Questions tagged [xnet]

xNet - a class library for .NET Framework, which includes Classes for work with proxy servers: HTTP, Socks4(a), Socks5, Classes for work with HTTP 1.0/1.1 protocol: keep-alive, gzip, deflate, chunked, SSL, proxies and more, Classes for work with multithreading: a multithreaded bypassing the collection, asynchronous events and more.

xNet - a class library for .NET Framework, which includes:

  • Classes for work with proxy servers: HTTP, Socks4(a), Socks5.
  • Classes for work with HTTP 1.0/1.1 protocol: keep-alive, gzip, deflate, chunked, SSL, proxies and more.
  • Classes for work with multithreading: a multithreaded bypassing the collection, asynchronous events and more.

See http://xnet.codeplex.com/.

17 questions
0
votes
1 answer

How to set custom host headers in xNet c#

HttpRequest request = new HttpRequest(); request.AddHeader("Host", "api.dwebsir.com"); request.Proxy = ProxyClient.Parse(ProxyType.Http, proxy); this way of adding custom host header doesnt seems to work. When i ignore the the proxy and while…
Bhanu Teja
  • 21
  • 6
0
votes
1 answer

On solaris, when compiled with g++, socket() and bind() are not getting intercepted using dlsym()

I have written a simple server program using socket functions. When compiled with g++, it gives undefined symbol error for send, __xnet_socket, listen, accept, __xnet_bind. Why the symbols for socket and bind are different than others. Also, when…
aaa
  • 415
  • 6
  • 15
1
2