tcpgate is a daemon that listens on a port for connections, and when the connection is made, proxies/bounces it to the host/port pair specified in the config file unmodified. Very simple, but very useful when you need to get around a bad route/firewall or fool some smart alec access control without having to telnet a million times from host to host.
29cdbd4d1db8b055b42bc5e7ce30b8c4tcpgate 0.0.2 - tcpgate is a tcp gateway/proxy. It listens on a port, when connection is made, opens another connection to the target host on the target port and forwards the packets unmodified. The target host sees the connection as coming from the host where tcpgate is running.
0639e6b859d77ce52f7d505c59af76a9Simple non-caching HTTP proxy. Great for situations when the official route between two hosts is down/slow/firewalled , the routers cannot be reconfigured, and you need to look at a page on the one host from the other. In addition, it now support user-agent spoofing (there are a few sites that play a smart alec and will not show you pages unless they like your User-agent), regexp content filtering (to get rid of junk ads when you go places), and IP-based access control.
86582df95e2852fb8b5b30f47c94f412www_proxy 0.0.3 - www_proxy is a non-caching HTTP proxy with capability of modifying the User-Agent field. It has customizable content filterig capablity and unlike most proxy servers, it logs the contents of the body of a POST request, not just the header. This tool is handy for debugging CGI scripts, search engine submission programs, bypassing problematic routes and firewalls, and for getting rid of junk HTML content.
aa86e7edbc8bbd1886090c512e4421e6libtcp++ is a C++ class library to facilitate the creation of TCP/IP clients and servers. It has two classes, TcpClient and TcpServer. TcpServer has build it logging capability and a peer detection method in addition to regular server functionality.
24d045ec23b97ae35229ce0819046cablibtcp++ is a C++ class library to facilitate the creation of TCP/IP clients and servers. It has two classes, TcpClient and TcpServer. TcpServer has build it logging capability and a peer detection method in addition to regular server functionality.
79a1636917d66e21dcb917c5d3f80bbclibtcp++ 0.0.1c - Allows you to create C++ TCP/IP clients and servers without having to worry about gethostbyname, sockect, connect, bind, listen and accept. Has two classes, TcpClient and TcpServer. Both can do logging in addition to regular stuff that their names would suggest.
0b68a4228a58aaa2f86a417a432d434clibtcp++ 0.0.2 - libtcp++ allows you to create C++ TCP/IP clients and servers without having to worry about gethostbyname, sockect, connect, bind, listen and accept. It has three classes, TcpClient, TcpServer and TcpIpRuleSet. TcpClient allows you to initiate TCP/IP connections, TcpServer is an abstract class to be used for creating servers by inheriting from it, and TcpIpRuleSet allows you to establish a set of IP-based access rules, and check IPs against them.
66d0a0c3fe836a85985fa6aa98301128