aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-06-05 16:16:46 +0000
committerChristian Grothoff <christian@grothoff.org>2010-06-05 16:16:46 +0000
commit69a23725d6937db68fc8ca2fd1e8490220edc7de (patch)
treeb4a4060dfb25ccf18254e0b726120c9b6bef9ee5 /src/transport
parentcf96e25a7a3c3864bb936b1b82fd086ca8d16a5e (diff)
downloadgnunet-69a23725d6937db68fc8ca2fd1e8490220edc7de.tar.gz
gnunet-69a23725d6937db68fc8ca2fd1e8490220edc7de.zip
UNIX domain socket support
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/test_transport_api_http_peer1.conf5
-rw-r--r--src/transport/test_transport_api_http_peer2.conf7
-rw-r--r--src/transport/test_transport_api_tcp_peer1.conf7
-rw-r--r--src/transport/test_transport_api_tcp_peer2.conf5
-rw-r--r--src/transport/test_transport_api_udp_nat_peer1.conf35
-rw-r--r--src/transport/test_transport_api_udp_nat_peer2.conf38
-rw-r--r--src/transport/test_transport_api_udp_peer1.conf15
-rw-r--r--src/transport/test_transport_api_udp_peer2.conf16
8 files changed, 50 insertions, 78 deletions
diff --git a/src/transport/test_transport_api_http_peer1.conf b/src/transport/test_transport_api_http_peer1.conf
index 539e9ab6c..793e12cc0 100644
--- a/src/transport/test_transport_api_http_peer1.conf
+++ b/src/transport/test_transport_api_http_peer1.conf
@@ -40,6 +40,7 @@ CONFIG = $DEFAULTCONFIG
40HOME = $SERVICEHOME 40HOME = $SERVICEHOME
41HOSTNAME = localhost 41HOSTNAME = localhost
42PORT = 12365 42PORT = 12365
43UNIXPATH = /tmp/gnunet-p1-service-transport.sock
43 44
44[peerinfo] 45[peerinfo]
45TRUST = $SERVICEHOME/data/credit/ 46TRUST = $SERVICEHOME/data/credit/
@@ -51,6 +52,7 @@ CONFIG = $DEFAULTCONFIG
51HOME = $SERVICEHOME 52HOME = $SERVICEHOME
52HOSTNAME = localhost 53HOSTNAME = localhost
53PORT = 12369 54PORT = 12369
55UNIXPATH = /tmp/gnunet-p1-service-peerinfo.sock
54 56
55[resolver] 57[resolver]
56ACCEPT_FROM6 = ::1; 58ACCEPT_FROM6 = ::1;
@@ -60,6 +62,7 @@ CONFIG = $DEFAULTCONFIG
60HOME = $SERVICEHOME 62HOME = $SERVICEHOME
61HOSTNAME = localhost 63HOSTNAME = localhost
62PORT = 12364 64PORT = 12364
65UNIXPATH = /tmp/gnunet-p1-service-resolver.sock
63 66
64[statistics] 67[statistics]
65ACCEPT_FROM6 = ::1; 68ACCEPT_FROM6 = ::1;
@@ -69,6 +72,7 @@ CONFIG = $DEFAULTCONFIG
69HOME = $SERVICEHOME 72HOME = $SERVICEHOME
70HOSTNAME = localhost 73HOSTNAME = localhost
71PORT = 12367 74PORT = 12367
75UNIXPATH = /tmp/gnunet-p1-service-statistics.sock
72 76
73[arm] 77[arm]
74DEFAULTSERVICES = 78DEFAULTSERVICES =
@@ -79,6 +83,7 @@ CONFIG = $DEFAULTCONFIG
79HOME = $SERVICEHOME 83HOME = $SERVICEHOME
80HOSTNAME = localhost 84HOSTNAME = localhost
81PORT = 12366 85PORT = 12366
86UNIXPATH = /tmp/gnunet-p1-service-arm.sock
82 87
83[transport-http] 88[transport-http]
84PORT = 12389 89PORT = 12389
diff --git a/src/transport/test_transport_api_http_peer2.conf b/src/transport/test_transport_api_http_peer2.conf
index 1cbe8cae0..00b90358f 100644
--- a/src/transport/test_transport_api_http_peer2.conf
+++ b/src/transport/test_transport_api_http_peer2.conf
@@ -43,6 +43,7 @@ CONFIG = $DEFAULTCONFIG
43HOME = $SERVICEHOME 43HOME = $SERVICEHOME
44HOSTNAME = localhost 44HOSTNAME = localhost
45PORT = 22365 45PORT = 22365
46UNIXPATH = /tmp/gnunet-p2-service-transport.sock
46#PREFIX = xterm -T transport1 -e gdb --command=cmd --args 47#PREFIX = xterm -T transport1 -e gdb --command=cmd --args
47#PREFIX = valgrind --leak-check=full 48#PREFIX = valgrind --leak-check=full
48 49
@@ -56,6 +57,7 @@ CONFIG = $DEFAULTCONFIG
56HOME = $SERVICEHOME 57HOME = $SERVICEHOME
57HOSTNAME = localhost 58HOSTNAME = localhost
58PORT = 22369 59PORT = 22369
60UNIXPATH = /tmp/gnunet-p2-service-peerinfo.sock
59 61
60[resolver] 62[resolver]
61ACCEPT_FROM6 = ::1; 63ACCEPT_FROM6 = ::1;
@@ -65,6 +67,7 @@ CONFIG = $DEFAULTCONFIG
65HOME = $SERVICEHOME 67HOME = $SERVICEHOME
66HOSTNAME = localhost 68HOSTNAME = localhost
67PORT = 22364 69PORT = 22364
70UNIXPATH = /tmp/gnunet-p2-service-resolver.sock
68 71
69[statistics] 72[statistics]
70ACCEPT_FROM6 = ::1; 73ACCEPT_FROM6 = ::1;
@@ -74,6 +77,8 @@ CONFIG = $DEFAULTCONFIG
74HOME = $SERVICEHOME 77HOME = $SERVICEHOME
75HOSTNAME = localhost 78HOSTNAME = localhost
76PORT = 22367 79PORT = 22367
80UNIXPATH = /tmp/gnunet-p2-service-statistics.sock
81
77 82
78[arm] 83[arm]
79DEFAULTSERVICES = 84DEFAULTSERVICES =
@@ -84,6 +89,8 @@ CONFIG = $DEFAULTCONFIG
84HOME = $SERVICEHOME 89HOME = $SERVICEHOME
85HOSTNAME = localhost 90HOSTNAME = localhost
86PORT = 22366 91PORT = 22366
92UNIXPATH = /tmp/gnunet-p2-service-arm.sock
93
87 94
88[transport-http] 95[transport-http]
89PORT = 22389 96PORT = 22389
diff --git a/src/transport/test_transport_api_tcp_peer1.conf b/src/transport/test_transport_api_tcp_peer1.conf
index 97e2111c8..f5bdc2063 100644
--- a/src/transport/test_transport_api_tcp_peer1.conf
+++ b/src/transport/test_transport_api_tcp_peer1.conf
@@ -43,6 +43,7 @@ CONFIG = $DEFAULTCONFIG
43HOME = $SERVICEHOME 43HOME = $SERVICEHOME
44HOSTNAME = localhost 44HOSTNAME = localhost
45PORT = 12365 45PORT = 12365
46UNIXPATH = /tmp/gnunet-p1-service-transport.sock
46 47
47[peerinfo] 48[peerinfo]
48TRUST = $SERVICEHOME/data/credit/ 49TRUST = $SERVICEHOME/data/credit/
@@ -54,6 +55,7 @@ CONFIG = $DEFAULTCONFIG
54HOME = $SERVICEHOME 55HOME = $SERVICEHOME
55HOSTNAME = localhost 56HOSTNAME = localhost
56PORT = 12369 57PORT = 12369
58UNIXPATH = /tmp/gnunet-p1-service-peerinfo.sock
57 59
58[resolver] 60[resolver]
59ACCEPT_FROM6 = ::1; 61ACCEPT_FROM6 = ::1;
@@ -62,7 +64,8 @@ BINARY = gnunet-service-resolver
62CONFIG = $DEFAULTCONFIG 64CONFIG = $DEFAULTCONFIG
63HOME = $SERVICEHOME 65HOME = $SERVICEHOME
64HOSTNAME = localhost 66HOSTNAME = localhost
65PORT = 12364 67PORT = 1236
68UNIXPATH = /tmp/gnunet-p1-service-resolver.sock
66 69
67[statistics] 70[statistics]
68ACCEPT_FROM6 = ::1; 71ACCEPT_FROM6 = ::1;
@@ -72,6 +75,7 @@ CONFIG = $DEFAULTCONFIG
72HOME = $SERVICEHOME 75HOME = $SERVICEHOME
73HOSTNAME = localhost 76HOSTNAME = localhost
74PORT = 12367 77PORT = 12367
78UNIXPATH = /tmp/gnunet-p1-service-statistics.sock
75 79
76[arm] 80[arm]
77DEFAULTSERVICES = transport statistics 81DEFAULTSERVICES = transport statistics
@@ -82,6 +86,7 @@ CONFIG = $DEFAULTCONFIG
82HOME = $SERVICEHOME 86HOME = $SERVICEHOME
83HOSTNAME = localhost 87HOSTNAME = localhost
84PORT = 12366 88PORT = 12366
89UNIXPATH = /tmp/gnunet-p1-service-arm.sock
85 90
86[transport-tcp] 91[transport-tcp]
87TIMEOUT = 300000 92TIMEOUT = 300000
diff --git a/src/transport/test_transport_api_tcp_peer2.conf b/src/transport/test_transport_api_tcp_peer2.conf
index f6ab6c231..f2c22e336 100644
--- a/src/transport/test_transport_api_tcp_peer2.conf
+++ b/src/transport/test_transport_api_tcp_peer2.conf
@@ -42,6 +42,7 @@ CONFIG = $DEFAULTCONFIG
42HOME = $SERVICEHOME 42HOME = $SERVICEHOME
43HOSTNAME = localhost 43HOSTNAME = localhost
44PORT = 22365 44PORT = 22365
45UNIXPATH = /tmp/gnunet-p2-service-transport.sock
45#PREFIX = xterm -T transport1 -e gdb --command=cmd --args 46#PREFIX = xterm -T transport1 -e gdb --command=cmd --args
46#PREFIX = valgrind --leak-check=full 47#PREFIX = valgrind --leak-check=full
47 48
@@ -55,6 +56,7 @@ CONFIG = $DEFAULTCONFIG
55HOME = $SERVICEHOME 56HOME = $SERVICEHOME
56HOSTNAME = localhost 57HOSTNAME = localhost
57PORT = 22369 58PORT = 22369
59UNIXPATH = /tmp/gnunet-p2-service-peerinfo.sock
58 60
59[resolver] 61[resolver]
60ACCEPT_FROM6 = ::1; 62ACCEPT_FROM6 = ::1;
@@ -64,6 +66,7 @@ CONFIG = $DEFAULTCONFIG
64HOME = $SERVICEHOME 66HOME = $SERVICEHOME
65HOSTNAME = localhost 67HOSTNAME = localhost
66PORT = 22364 68PORT = 22364
69UNIXPATH = /tmp/gnunet-p2-service-resolver.sock
67 70
68[statistics] 71[statistics]
69ACCEPT_FROM6 = ::1; 72ACCEPT_FROM6 = ::1;
@@ -73,6 +76,7 @@ CONFIG = $DEFAULTCONFIG
73HOME = $SERVICEHOME 76HOME = $SERVICEHOME
74HOSTNAME = localhost 77HOSTNAME = localhost
75PORT = 22367 78PORT = 22367
79UNIXPATH = /tmp/gnunet-p2-service-statistics.sock
76 80
77[arm] 81[arm]
78DEFAULTSERVICES = transport statistics 82DEFAULTSERVICES = transport statistics
@@ -83,6 +87,7 @@ CONFIG = $DEFAULTCONFIG
83HOME = $SERVICEHOME 87HOME = $SERVICEHOME
84HOSTNAME = localhost 88HOSTNAME = localhost
85PORT = 22366 89PORT = 22366
90UNIXPATH = /tmp/gnunet-p2-service-arm.sock
86 91
87[transport-tcp] 92[transport-tcp]
88TIMEOUT = 300000 93TIMEOUT = 300000
diff --git a/src/transport/test_transport_api_udp_nat_peer1.conf b/src/transport/test_transport_api_udp_nat_peer1.conf
index d2ab3ecee..0956c83eb 100644
--- a/src/transport/test_transport_api_udp_nat_peer1.conf
+++ b/src/transport/test_transport_api_udp_nat_peer1.conf
@@ -5,29 +5,13 @@ INTERNAL_ADDRESS = 127.0.0.1
5EXTERNAL_ADDRESS = 127.0.0.1 5EXTERNAL_ADDRESS = 127.0.0.1
6 6
7[fs] 7[fs]
8ACCEPT_FROM6 = ::1; 8AUTOSTART = NO
9ACCEPT_FROM = 127.0.0.1;
10BINARY = gnunet-service-fs
11CONFIG = $DEFAULTCONFIG
12HOME = $SERVICEHOME
13HOSTNAME = localhost
14PORT = 2094
15INDEXDB = $SERVICEHOME/idxinfo.lst
16 9
17[datastore-sqlite] 10[datastore-sqlite]
18FILENAME = $SERVICEHOME/datastore/sqlite.db 11FILENAME = $SERVICEHOME/datastore/sqlite.db
19 12
20[datastore] 13[datastore]
21DATABASE = sqlite 14AUTOSTART = NO
22BLOOMFILTER = $SERVICEHOME/fs/bloomfilter
23QUOTA = 100000000
24ACCEPT_FROM6 = ::1;
25ACCEPT_FROM = 127.0.0.1;
26BINARY = gnunet-service-datastore
27CONFIG = $DEFAULTCONFIG
28HOME = $SERVICEHOME
29HOSTNAME = localhost
30PORT = 2093
31 15
32[hostlist] 16[hostlist]
33HTTP-PROXY = 17HTTP-PROXY =
@@ -49,15 +33,7 @@ FRIENDS-ONLY = NO
49MINIMUM-FRIENDS = 0 33MINIMUM-FRIENDS = 0
50 34
51[core] 35[core]
52TOTAL_QUOTA_OUT = 3932160 36AUTOSTART = NO
53TOTAL_QUOTA_IN = 3932160
54ACCEPT_FROM6 = ::1;
55ACCEPT_FROM = 127.0.0.1;
56BINARY = gnunet-service-core
57CONFIG = $DEFAULTCONFIG
58HOME = $SERVICEHOME
59HOSTNAME = localhost
60PORT = 2092
61 37
62[transport] 38[transport]
63PLUGINS = udp_nat 39PLUGINS = udp_nat
@@ -70,6 +46,7 @@ CONFIG = $DEFAULTCONFIG
70HOME = $SERVICEHOME 46HOME = $SERVICEHOME
71HOSTNAME = localhost 47HOSTNAME = localhost
72PORT = 12365 48PORT = 12365
49UNIXPATH = /tmp/gnunet-p1-service-transport.sock
73#PREFIX = valgrind --track-origins=yes --leak-check=full --log-file=valgrind_udp_peer1.log 50#PREFIX = valgrind --track-origins=yes --leak-check=full --log-file=valgrind_udp_peer1.log
74#PREFIX = xterm -e xterm -T transport -e gdb --args 51#PREFIX = xterm -e xterm -T transport -e gdb --args
75 52
@@ -83,6 +60,7 @@ CONFIG = $DEFAULTCONFIG
83HOME = $SERVICEHOME 60HOME = $SERVICEHOME
84HOSTNAME = localhost 61HOSTNAME = localhost
85PORT = 12369 62PORT = 12369
63UNIXPATH = /tmp/gnunet-p1-service-peerinfo.sock
86 64
87[resolver] 65[resolver]
88ACCEPT_FROM6 = ::1; 66ACCEPT_FROM6 = ::1;
@@ -92,6 +70,7 @@ CONFIG = $DEFAULTCONFIG
92HOME = $SERVICEHOME 70HOME = $SERVICEHOME
93HOSTNAME = localhost 71HOSTNAME = localhost
94PORT = 12364 72PORT = 12364
73UNIXPATH = /tmp/gnunet-p1-service-resolver.sock
95 74
96[statistics] 75[statistics]
97ACCEPT_FROM6 = ::1; 76ACCEPT_FROM6 = ::1;
@@ -101,6 +80,7 @@ CONFIG = $DEFAULTCONFIG
101HOME = $SERVICEHOME 80HOME = $SERVICEHOME
102HOSTNAME = localhost 81HOSTNAME = localhost
103PORT = 12367 82PORT = 12367
83UNIXPATH = /tmp/gnunet-p1-service-statistics.sock
104 84
105[arm] 85[arm]
106DEFAULTSERVICES = 86DEFAULTSERVICES =
@@ -111,6 +91,7 @@ CONFIG = $DEFAULTCONFIG
111HOME = $SERVICEHOME 91HOME = $SERVICEHOME
112HOSTNAME = localhost 92HOSTNAME = localhost
113PORT = 12366 93PORT = 12366
94UNIXPATH = /tmp/gnunet-p1-service-arm.sock
114 95
115[transport-tcp] 96[transport-tcp]
116TIMEOUT = 300000 97TIMEOUT = 300000
diff --git a/src/transport/test_transport_api_udp_nat_peer2.conf b/src/transport/test_transport_api_udp_nat_peer2.conf
index 32d8cab23..3dc4d672b 100644
--- a/src/transport/test_transport_api_udp_nat_peer2.conf
+++ b/src/transport/test_transport_api_udp_nat_peer2.conf
@@ -5,29 +5,10 @@ EXTERNAL_ADDRESS = 127.0.0.1
5INTERNAL_ADDRESS = 127.0.0.1 5INTERNAL_ADDRESS = 127.0.0.1
6 6
7[fs] 7[fs]
8ACCEPT_FROM6 = ::1; 8AUTOSTART = NO
9ACCEPT_FROM = 127.0.0.1;
10BINARY = gnunet-service-fs
11CONFIG = $DEFAULTCONFIG
12HOME = $SERVICEHOME
13HOSTNAME = localhost
14PORT = 2094
15INDEXDB = $SERVICEHOME/idxinfo.lst
16
17[datastore-sqlite]
18FILENAME = $SERVICEHOME/datastore/sqlite.db
19 9
20[datastore] 10[datastore]
21DATABASE = sqlite 11AUTOSTART = NO
22BLOOMFILTER = $SERVICEHOME/fs/bloomfilter
23QUOTA = 100000000
24ACCEPT_FROM6 = ::1;
25ACCEPT_FROM = 127.0.0.1;
26BINARY = gnunet-service-datastore
27CONFIG = $DEFAULTCONFIG
28HOME = $SERVICEHOME
29HOSTNAME = localhost
30PORT = 2093
31 12
32[hostlist] 13[hostlist]
33HTTP-PROXY = 14HTTP-PROXY =
@@ -49,15 +30,7 @@ FRIENDS-ONLY = NO
49MINIMUM-FRIENDS = 0 30MINIMUM-FRIENDS = 0
50 31
51[core] 32[core]
52TOTAL_QUOTA_OUT = 3932160 33AUTOSTART = NO
53TOTAL_QUOTA_IN = 3932160
54ACCEPT_FROM6 = ::1;
55ACCEPT_FROM = 127.0.0.1;
56BINARY = gnunet-service-core
57CONFIG = $DEFAULTCONFIG
58HOME = $SERVICEHOME
59HOSTNAME = localhost
60PORT = 2092
61 34
62[transport] 35[transport]
63PLUGINS = udp_nat 36PLUGINS = udp_nat
@@ -71,6 +44,7 @@ CONFIG = $DEFAULTCONFIG
71HOME = $SERVICEHOME 44HOME = $SERVICEHOME
72HOSTNAME = localhost 45HOSTNAME = localhost
73PORT = 22365 46PORT = 22365
47UNIXPATH = /tmp/gnunet-p2-service-transport.sock
74#PREFIX = xterm -e xterm -T transport -e gdb --args 48#PREFIX = xterm -e xterm -T transport -e gdb --args
75 49
76[peerinfo] 50[peerinfo]
@@ -83,6 +57,7 @@ CONFIG = $DEFAULTCONFIG
83HOME = $SERVICEHOME 57HOME = $SERVICEHOME
84HOSTNAME = localhost 58HOSTNAME = localhost
85PORT = 22369 59PORT = 22369
60UNIXPATH = /tmp/gnunet-p2-service-peerinfo.sock
86 61
87[resolver] 62[resolver]
88ACCEPT_FROM6 = ::1; 63ACCEPT_FROM6 = ::1;
@@ -92,6 +67,7 @@ CONFIG = $DEFAULTCONFIG
92HOME = $SERVICEHOME 67HOME = $SERVICEHOME
93HOSTNAME = localhost 68HOSTNAME = localhost
94PORT = 22364 69PORT = 22364
70UNIXPATH = /tmp/gnunet-p2-service-resolver.sock
95 71
96[statistics] 72[statistics]
97ACCEPT_FROM6 = ::1; 73ACCEPT_FROM6 = ::1;
@@ -101,6 +77,7 @@ CONFIG = $DEFAULTCONFIG
101HOME = $SERVICEHOME 77HOME = $SERVICEHOME
102HOSTNAME = localhost 78HOSTNAME = localhost
103PORT = 22367 79PORT = 22367
80UNIXPATH = /tmp/gnunet-p2-service-statistics.sock
104 81
105[arm] 82[arm]
106DEFAULTSERVICES = 83DEFAULTSERVICES =
@@ -111,6 +88,7 @@ CONFIG = $DEFAULTCONFIG
111HOME = $SERVICEHOME 88HOME = $SERVICEHOME
112HOSTNAME = localhost 89HOSTNAME = localhost
113PORT = 22366 90PORT = 22366
91UNIXPATH = /tmp/gnunet-p2-service-arm.sock
114 92
115[transport-tcp] 93[transport-tcp]
116TIMEOUT = 300000 94TIMEOUT = 300000
diff --git a/src/transport/test_transport_api_udp_peer1.conf b/src/transport/test_transport_api_udp_peer1.conf
index e1ff1644e..49efbff63 100644
--- a/src/transport/test_transport_api_udp_peer1.conf
+++ b/src/transport/test_transport_api_udp_peer1.conf
@@ -30,15 +30,7 @@ FRIENDS-ONLY = NO
30MINIMUM-FRIENDS = 0 30MINIMUM-FRIENDS = 0
31 31
32[core] 32[core]
33TOTAL_QUOTA_OUT = 3932160 33AUTOSTART = NO
34TOTAL_QUOTA_IN = 3932160
35ACCEPT_FROM6 = ::1;
36ACCEPT_FROM = 127.0.0.1;
37BINARY = gnunet-service-core
38CONFIG = $DEFAULTCONFIG
39HOME = $SERVICEHOME
40HOSTNAME = localhost
41PORT = 2092
42 34
43[transport] 35[transport]
44PLUGINS = udp 36PLUGINS = udp
@@ -51,6 +43,7 @@ CONFIG = $DEFAULTCONFIG
51HOME = $SERVICEHOME 43HOME = $SERVICEHOME
52HOSTNAME = localhost 44HOSTNAME = localhost
53PORT = 12365 45PORT = 12365
46UNIXPATH = /tmp/gnunet-p1-service-transport.sock
54#PREFIX = valgrind --track-origins=yes --leak-check=full --log-file=valgrind_udp_peer1.log 47#PREFIX = valgrind --track-origins=yes --leak-check=full --log-file=valgrind_udp_peer1.log
55#PREFIX = xterm -e xterm -T transport -e gdb --args 48#PREFIX = xterm -e xterm -T transport -e gdb --args
56 49
@@ -64,6 +57,7 @@ CONFIG = $DEFAULTCONFIG
64HOME = $SERVICEHOME 57HOME = $SERVICEHOME
65HOSTNAME = localhost 58HOSTNAME = localhost
66PORT = 12369 59PORT = 12369
60UNIXPATH = /tmp/gnunet-p1-service-peerinfo.sock
67 61
68[resolver] 62[resolver]
69ACCEPT_FROM6 = ::1; 63ACCEPT_FROM6 = ::1;
@@ -73,6 +67,7 @@ CONFIG = $DEFAULTCONFIG
73HOME = $SERVICEHOME 67HOME = $SERVICEHOME
74HOSTNAME = localhost 68HOSTNAME = localhost
75PORT = 12364 69PORT = 12364
70UNIXPATH = /tmp/gnunet-p1-service-resolver.sock
76 71
77[statistics] 72[statistics]
78ACCEPT_FROM6 = ::1; 73ACCEPT_FROM6 = ::1;
@@ -82,6 +77,7 @@ CONFIG = $DEFAULTCONFIG
82HOME = $SERVICEHOME 77HOME = $SERVICEHOME
83HOSTNAME = localhost 78HOSTNAME = localhost
84PORT = 12367 79PORT = 12367
80UNIXPATH = /tmp/gnunet-p1-service-statistics.sock
85 81
86[arm] 82[arm]
87DEFAULTSERVICES = 83DEFAULTSERVICES =
@@ -92,6 +88,7 @@ CONFIG = $DEFAULTCONFIG
92HOME = $SERVICEHOME 88HOME = $SERVICEHOME
93HOSTNAME = localhost 89HOSTNAME = localhost
94PORT = 12366 90PORT = 12366
91UNIXPATH = /tmp/gnunet-p1-service-arm.sock
95 92
96[transport-tcp] 93[transport-tcp]
97TIMEOUT = 300000 94TIMEOUT = 300000
diff --git a/src/transport/test_transport_api_udp_peer2.conf b/src/transport/test_transport_api_udp_peer2.conf
index cb4d4778d..2259e23f7 100644
--- a/src/transport/test_transport_api_udp_peer2.conf
+++ b/src/transport/test_transport_api_udp_peer2.conf
@@ -29,17 +29,6 @@ AUTOCONNECT = YES
29FRIENDS-ONLY = NO 29FRIENDS-ONLY = NO
30MINIMUM-FRIENDS = 0 30MINIMUM-FRIENDS = 0
31 31
32[core]
33TOTAL_QUOTA_OUT = 3932160
34TOTAL_QUOTA_IN = 3932160
35ACCEPT_FROM6 = ::1;
36ACCEPT_FROM = 127.0.0.1;
37BINARY = gnunet-service-core
38CONFIG = $DEFAULTCONFIG
39HOME = $SERVICEHOME
40HOSTNAME = localhost
41PORT = 2092
42
43[transport] 32[transport]
44PLUGINS = udp 33PLUGINS = udp
45DEBUG = NO 34DEBUG = NO
@@ -52,6 +41,7 @@ CONFIG = $DEFAULTCONFIG
52HOME = $SERVICEHOME 41HOME = $SERVICEHOME
53HOSTNAME = localhost 42HOSTNAME = localhost
54PORT = 22365 43PORT = 22365
44UNIXPATH = /tmp/gnunet-p1-service-transport.sock
55#PREFIX = valgrind --track-origins=yes --leak-check=full --log-file=valgrind_udp_peer2.log 45#PREFIX = valgrind --track-origins=yes --leak-check=full --log-file=valgrind_udp_peer2.log
56 46
57[peerinfo] 47[peerinfo]
@@ -64,6 +54,7 @@ CONFIG = $DEFAULTCONFIG
64HOME = $SERVICEHOME 54HOME = $SERVICEHOME
65HOSTNAME = localhost 55HOSTNAME = localhost
66PORT = 22369 56PORT = 22369
57UNIXPATH = /tmp/gnunet-p1-service-peerinfo.sock
67 58
68[resolver] 59[resolver]
69ACCEPT_FROM6 = ::1; 60ACCEPT_FROM6 = ::1;
@@ -73,6 +64,7 @@ CONFIG = $DEFAULTCONFIG
73HOME = $SERVICEHOME 64HOME = $SERVICEHOME
74HOSTNAME = localhost 65HOSTNAME = localhost
75PORT = 22364 66PORT = 22364
67UNIXPATH = /tmp/gnunet-p1-service-resolver.sock
76 68
77[statistics] 69[statistics]
78ACCEPT_FROM6 = ::1; 70ACCEPT_FROM6 = ::1;
@@ -82,6 +74,7 @@ CONFIG = $DEFAULTCONFIG
82HOME = $SERVICEHOME 74HOME = $SERVICEHOME
83HOSTNAME = localhost 75HOSTNAME = localhost
84PORT = 22367 76PORT = 22367
77UNIXPATH = /tmp/gnunet-p1-service-statistics.sock
85 78
86[arm] 79[arm]
87DEFAULTSERVICES = 80DEFAULTSERVICES =
@@ -92,6 +85,7 @@ CONFIG = $DEFAULTCONFIG
92HOME = $SERVICEHOME 85HOME = $SERVICEHOME
93HOSTNAME = localhost 86HOSTNAME = localhost
94PORT = 22366 87PORT = 22366
88UNIXPATH = /tmp/gnunet-p1-service-arm.sock
95 89
96[transport-tcp] 90[transport-tcp]
97TIMEOUT = 300000 91TIMEOUT = 300000