tinyproxy-1.8.3

所属分类:代理服务器
开发工具:C/C++
文件大小:445KB
下载次数:29
上传日期:2012-11-20 15:23:34
上 传 者skyrockevil
说明:  tinyproxy为一个轻型http代理服务器, 支持Https代理以及IPV6, 是初学者学习网络编程的好教程, 代码量不是很大
(http proxy server tinyproxy a light support Https agents and IPV6, is a good tutorial for beginners to learn network programming, code volume is not large)

文件列表:
tinyproxy-1.8.3 (0, 2012-09-17)
tinyproxy-1.8.3\aclocal.m4 (36070, 2011-08-16)
tinyproxy-1.8.3\AUTHORS (668, 2011-08-16)
tinyproxy-1.8.3\autogen.sh (405, 2010-01-11)
tinyproxy-1.8.3\ChangeLog (77377, 2011-08-16)
tinyproxy-1.8.3\config.guess (44941, 2010-03-29)
tinyproxy-1.8.3\config.h.in (8544, 2011-08-16)
tinyproxy-1.8.3\config.sub (34423, 2010-03-29)
tinyproxy-1.8.3\configure (232707, 2011-08-16)
tinyproxy-1.8.3\configure.ac (9470, 2011-08-16)
tinyproxy-1.8.3\COPYING (17987, 2009-09-15)
tinyproxy-1.8.3\data (0, 2011-08-16)
tinyproxy-1.8.3\data\Makefile.am (23, 2010-01-11)
tinyproxy-1.8.3\data\Makefile.in (16954, 2011-08-16)
tinyproxy-1.8.3\data\templates (0, 2011-08-16)
tinyproxy-1.8.3\data\templates\debug.html (874, 2010-01-11)
tinyproxy-1.8.3\data\templates\default.html (466, 2010-01-11)
tinyproxy-1.8.3\data\templates\Makefile.am (150, 2010-01-11)
tinyproxy-1.8.3\data\templates\Makefile.in (11911, 2011-08-16)
tinyproxy-1.8.3\data\templates\stats.html (1121, 2010-01-11)
tinyproxy-1.8.3\depcomp (18615, 2010-03-29)
tinyproxy-1.8.3\docs (0, 2011-08-16)
tinyproxy-1.8.3\docs\filter-howto.txt (2184, 2010-01-11)
tinyproxy-1.8.3\docs\http-error-codes.txt (1364, 2010-01-11)
tinyproxy-1.8.3\docs\http-rfcs.txt (746, 2010-01-11)
tinyproxy-1.8.3\docs\Makefile.am (102, 2010-01-11)
tinyproxy-1.8.3\docs\Makefile.in (17032, 2011-08-16)
tinyproxy-1.8.3\docs\man5 (0, 2011-08-16)
tinyproxy-1.8.3\docs\man5\Makefile.am (318, 2010-01-11)
tinyproxy-1.8.3\docs\man5\Makefile.in (13827, 2011-08-16)
tinyproxy-1.8.3\docs\man5\tinyproxy.conf.txt.in (12427, 2011-08-16)
tinyproxy-1.8.3\docs\man8 (0, 2011-08-16)
tinyproxy-1.8.3\docs\man8\Makefile.am (312, 2011-08-16)
tinyproxy-1.8.3\docs\man8\Makefile.in (13802, 2011-08-16)
tinyproxy-1.8.3\docs\man8\tinyproxy.txt.in (3811, 2011-08-16)
tinyproxy-1.8.3\etc (0, 2011-08-16)
tinyproxy-1.8.3\etc\Makefile.am (591, 2010-01-11)
tinyproxy-1.8.3\etc\Makefile.in (12329, 2011-08-16)
tinyproxy-1.8.3\etc\tinyproxy.conf.in (10117, 2010-03-03)
tinyproxy-1.8.3\INSTALL (15578, 2010-03-29)
... ...

Tinyproxy ========= Tinyproxy is a small, efficient HTTP/SSL proxy daemon released under the GNU General Public License. Tinyproxy is very useful in a small network setting, where a larger proxy would either be too resource intensive, or a security risk. One of the key features of Tinyproxy is the buffering connection concept. In effect, Tinyproxy will buffer a high speed response from a server, and then relay it to a client at the highest speed the client will accept. This feature greatly reduces the problems with sluggishness on the Internet. If you are sharing an Internet connection with a small network, and you only want to allow HTTP requests to be allowed, then Tinyproxy is a great tool for the network administrator. For more info, please visit: https://banu.com/tinyproxy/ Installation ------------ To install this package under a UNIX derivative, read the INSTALL file. Tinyproxy uses a standard GNU `configure` script. Basically you should be able to do: ---- ./configure make make install ---- in the top level directory to compile and install Tinyproxy. There are additional command line arguments you can supply to `configure`. They include: --enable-debug If you would like to turn on full debugging support --enable-xtinyproxy Compile in support for the XTinyproxy header, which is sent to any web server in your domain. --enable-filter Allows Tinyproxy to filter out certain domains and URLs. --enable-upstream Enable support for proxying connections through another proxy server. --enable-transparent Allow Tinyproxy to be used as a transparent proxy daemon --enable-static Compile a static version of Tinyproxy --with-stathost=HOST Set the default name of the stats host Support ------- If you are having problems with Tinyproxy, please submit a bug report using Tinyproxy as the product at: https://banu.com/bugzilla/ You may also wish to subscribe to the Tinyproxy mailing lists. To do so please visit: https://banu.com/mailman/listinfo/tinyproxy-announce-list https://banu.com/mailman/listinfo/tinyproxy-users-list https://banu.com/mailman/listinfo/tinyproxy-developers-list for more information on how to subscribe and post messages to the lists. Contributing ------------ If you would like to contribute a feature, or a bug fix to the Tinyproxy source, please send a patch (preferably as a unified diff. i.e. `diff -u` against the "master" branch of the Tinyproxy source code git repository to tinyproxy-developers-list. Please include a description of what your patch does. Tinyproxy's git repository is git://banu.com/tinyproxy.git. The following command creates a local copy: ---- git clone git://banu.com/tinyproxy.git ---- The easiest and preferred way to create a patch for submission is to check in your changes locally and use `git format-patch` to generate a mbox-style commit file that contains the diff along with the commit message and author information. Such a format-patch file can be integrated into the upstream repository, automatically keeping the commit message and author information. You can also meet developers and discuss development issues and patches in the #tinyproxy IRC channel on Freenode (irc.freenode.net).

近期下载者

相关文件


收藏者