• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.gitignoreH A D14-May-201458 87

CHANGESH A D14-May-201424.4 KiB547480

COPYINGH A D14-May-20141 KiB2016

INSTALLH A D14-May-20142 KiB7350

MakefileH A D03-May-20223.9 KiB14469

READMEH A D14-May-2014622 2213

README.WindowsH A D14-May-20141.2 KiB3925

atom.cH A D14-May-20148.8 KiB380303

atom.hH A D14-May-20142.2 KiB5932

auth.cH A D14-May-20143.1 KiB9262

auth.hH A D14-May-20141.2 KiB252

chunk.cH A D14-May-201411.4 KiB470379

chunk.hH A D14-May-20141.8 KiB5221

client.cH A D14-May-201470.2 KiB2,1531,852

client.hH A D14-May-20143.4 KiB6542

config.cH A D14-May-201424.1 KiB870772

config.hH A D14-May-20142.5 KiB6942

config.sampleH A D03-May-20224.1 KiB167102

dirent_compat.cH A D14-May-20143.1 KiB150105

dirent_compat.hH A D14-May-20141 KiB5119

diskcache.cH A D14-May-201468.8 KiB2,5642,190

diskcache.hH A D14-May-20142.3 KiB7243

dns.cH A D14-May-201449.7 KiB1,7541,543

dns.hH A D14-May-20141.7 KiB4921

event.cH A D14-May-201420.2 KiB835699

event.hH A D14-May-20143.4 KiB9161

forbidden.cH A D03-May-202221.9 KiB836690

forbidden.hH A D14-May-20142 KiB5125

forbidden.sampleH A D14-May-2014450 1914

fts_compat.cH A D14-May-20147.8 KiB366299

fts_compat.hH A D14-May-20141.9 KiB7038

ftsimport.cH A D14-May-2014162 139

ftsimport.hH A D14-May-201471 75

http.cH A D14-May-201430.5 KiB1,095933

http.hH A D14-May-20145.8 KiB183133

http_parse.cH A D14-May-201446.6 KiB1,5491,405

http_parse.hH A D14-May-20142.6 KiB5932

io.cH A D14-May-201430.3 KiB1,144988

io.hH A D14-May-20145 KiB162111

local.cH A D14-May-201424.3 KiB747642

local.hH A D14-May-20142.1 KiB4924

log.cH A D14-May-201411.5 KiB497388

log.hH A D14-May-20144.4 KiB14196

main.cH A D03-May-20224.4 KiB170128

md5.cH A D14-May-201411.7 KiB323203

md5.hH A D14-May-20142.9 KiB6115

md5import.cH A D14-May-2014275 1613

md5import.hH A D14-May-2014206 109

mingw.cH A D14-May-201413 KiB506358

mingw.hH A D14-May-20146.4 KiB198115

object.cH A D14-May-201428.9 KiB1,041874

object.hH A D14-May-20146.1 KiB198128

parse_time.cH A D14-May-20145.6 KiB216167

parse_time.hH A D14-May-20141.2 KiB283

polipo.hH A D14-May-20144.8 KiB242187

polipo.manH A D03-May-20222 KiB9493

polipo.texiH A D14-May-201481.3 KiB1,9561,642

server.cH A D14-May-201495.3 KiB2,8922,464

server.hH A D14-May-20144.4 KiB11485

socks.cH A D14-May-201413.6 KiB520420

socks.hH A D14-May-20141.4 KiB3712

tunnel.cH A D14-May-201416.8 KiB573477

tunnel.hH A D14-May-20141.6 KiB5124

util.cH A D14-May-201418.1 KiB859729

util.hH A D14-May-20144.3 KiB10977

README

1Polipo README
2=============
3
4Polipo is single-threaded, non blocking caching web proxy that has
5very modest resource needs.  See the file INSTALL for installation
6instructions.  See the texinfo manual (available as HTML after
7installation) for more information.
8
9Current information about Polipo can be found on the Polipo web page,
10
11    http://www.pps.univ-paris-diderot.fr/~jch/software/polipo/
12
13Further inquiries should be sent to the Polipo-users mailing list:
14
15    <polipo-users@lists.sourceforge.net>
16
17Please see the Polipo web page for subscription information.
18
19
20Juliusz Chroboczek
21<jch@pps.univ-paris-diderot.fr>
22

README.Windows

1Building Polipo on Windows
2==========================
3
4There are two distinct ports of Polipo to Windows -- a port using the
5Cygwin emulation libraries, and an experimental native port using Mingw.
6
7The Cygwin port is identical to the Unix binary.  Build it just like
8you would build under Unix -- just type ``make all'' in the directory
9where you untarred the Polipo sources.
10
11In order to build the native port, cd to the Polipo directory, and do
12
13    make EXE=.exe LDLIBS=-lwsock32
14
15or, if you've got a regex library,
16
17    make EXE=.exe EXTRA_DEFINES=-DHAVE_REGEX LDLIBS="-lwsock32 -lregex"
18
19In order to cross-compile from a Unix system, you will probably need
20to point make at the right compiler:
21
22    make EXE=.exe CC=i586-mingw32msvc-gcc LDLIBS=-lwsock32
23
24The native port currently attempts to access files in locations that
25are typical for a Unix system; for example, it will attempt to read a
26configuration file /etc/polipo/config on the current drive.  You will
27probably need to point it at your config file with an explicit ``-c''
28command-line argument, and define at least the following configuration
29variables:
30
31    dnsNameServer
32    diskCacheRoot
33    forbiddenFile
34
35Help with solving this issue would be very much appreciated.
36
37
38Juliusz Chroboczek
39