blob: 4a1e3210bf649ba83717bd71f4674d968e16f856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
libcricketbase_la_SOURCES = socketaddress.cc \
time.cc \
asyncudpsocket.cc \
messagequeue.cc \
thread.cc \
physicalsocketserver.cc \
bytebuffer.cc \
asyncpacketsocket.cc \
network.cc \
asynctcpsocket.cc \
socketadapters.cc \
md5c.c \
base64.cc \
task.cc \
taskrunner.cc \
host.cc \
proxydetect.cc \
socketaddresspair.cc \
stringencode.cc \
stringdigest.cc \
stringutils.cc \
proxyinfo.cc \
common.cc \
logging.cc \
stream.cc \
ssladapter.cc \
openssladapter.cc \
helpers.cc \
asynchttprequest.cc \
firewallsocketserver.cc \
httpcommon.cc \
httpbase.cc \
httpclient.cc \
httpserver.cc \
socketpool.cc \
signalthread.cc \
autodetectproxy.cc \
urlencode.cc \
pathutils.cc \
fileutils.cc \
unixfilesystem.cc \
tarstream.cc \
streamutils.cc \
diskcache.cc \
diskcachestd.cc
libcrickettest_la_SOURCES = testclient.cc \
natserver.cc \
natsocketfactory.cc \
nattypes.cc \
virtualsocketserver.cc
noinst_HEADERS = asyncfile.h \
common.h \
convert.h \
asyncpacketsocket.h \
socketfactory.h \
asyncsocket.h \
socket.h \
asynctcpsocket.h \
linked_ptr.h \
asyncudpsocket.h \
logging.h \
socketserver.h \
base64.h \
md5.h \
stl_decl.h \
basicdefs.h \
messagequeue.h \
basictypes.h \
stringdigest.h \
stringencode.h \
stringutils.h \
bytebuffer.h \
task.h \
byteorder.h \
taskrunner.h \
criticalsection.h \
network.h \
thread.h \
time.h \
physicalsocketserver.h \
proxyinfo.h \
host.h \
scoped_ptr.h \
sigslot.h \
winping.h \
socketadapters.h \
socketaddress.h \
host.h \
socketaddresspair.h \
Equifax_Secure_Global_eBusiness_CA-1.h \
stream.h \
ssladapter.h \
openssladapter.h \
cryptstring.h \
httpbase.h \
httpclient.h \
httpcommon.h \
httpserver.h \
httpcommon-inl.h \
proxydetect.h \
helpers.h \
socketpool.h \
asynchttprequest.h \
signalthread.h \
firewallsocketserver.h \
diskcache.h \
pathutils.h \
socketstream.h \
autodetectproxy.h \
urlencode.h \
fileutils.h \
unixfilesystem.h \
win32filesystem.h \
tarstream.h \
streamutils.h \
diskcachestd.h \
testclient.h \
natserver.h \
nattypes.h \
natsocketfactory.h \
virtualsocketserver.h \
event.h
AM_CXXFLAGS = -DPOSIX
DEFAULT_INCLUDES = -I$(top_srcdir) `pkg-config --cflags gtk+-2.0`
noinst_LTLIBRARIES = libcricketbase.la libcrickettest.la
noinst_PROGRAMS = natserver nat_unittest virtualsocket_unittest
natserver_SOURCES = natserver_main.cc
natserver_LDADD = libcrickettest.la libcricketbase.la -lpthread
nat_unittest_SOURCES = nat_unittest.cc
nat_unittest_LDADD = libcrickettest.la libcricketbase.la -lpthread
virtualsocket_unittest_SOURCES = virtualsocket_unittest.cc
virtualsocket_unittest_LDADD = libcrickettest.la libcricketbase.la -lpthread
EXTRA_DIST = diskcache_win32.h \
diskcache_win32.cc \
win32.h \
winping.h \
winping.cc \
win32filesystem.cc \
win32socketserver.cc \
win32socketserver.h \
win32window.h \
winfirewall.h \
winfirewall.cc \
schanneladapter.h \
schanneladapter.cc \
sec_buffer.h
|