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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
|
2012-06-02 14:39 grothoff
* [r21729] configure.ac, src/include/plibc.h, src/util/server.c,
src/util/winproc.c: LRN: Update plibc and utf8ization
2012-06-01 18:51 wachs
* [r21714] src/transport/plugin_transport_http_client.c,
src/transport/plugin_transport_http_server.c: fix for 2395
2012-06-01 15:36 wachs
* [r21704] src/ats/gnunet-service-ats_addresses.c: fix for 0002392
2012-06-01 08:58 schanzen
* [r21684] src/gns/nss/Makefile.am, src/gns/nss/nss_gns.c,
src/gns/nss/nss_gns_query.c, src/gns/nss/nss_gns_query.h,
src/gns/nss/query.c, src/gns/nss/query.h, src/gns/nss/util.c,
src/gns/nss/util.h: cleanup
2012-06-01 08:53 wachs
* [r21683] src/transport/plugin_transport_unix.c: additional error
message
2012-06-01 08:53 wachs
* [r21682] src/transport/plugin_transport_http_server.c: remove
unused variable
2012-05-30 21:21 harsha
* [r21647] src/testing/Makefile.am, src/testing/testing_new.c: test
case for peer startup in new testing library
2012-05-30 14:47 wachs
* [r21646] src/util/Makefile.am, src/util/program.c,
src/util/service.c, src/util/speedup.c, src/util/test_speedup.c,
src/util/test_speedup_data.conf, src/util/util.conf: speedup
mechanism to manipulate gnunet time
2012-05-30 14:34 harsha
* [r21645] src/testing/testing_new.c: comments and fixed NULL check
for tm
2012-05-30 14:26 harsha
* [r21644] src/testing/testing_new.c: refined
GNUNET_TESTING_service_run
2012-05-29 14:06 harsha
* [r21634] src/testing/testing_new.c: removed double rsa key free
2012-05-27 21:46 grothoff
* [r21608] src/ats/gnunet-service-ats_addresses.c,
src/ats/gnunet-service-ats_addresses_mlp.c,
src/ats/test_ats_api_update_address.c,
src/core/core_api_is_connected.c,
src/core/core_api_iterate_peers.c, src/dns/plugin_block_dns.c,
src/dv/gnunet-service-dv.c,
src/gns/gnunet-service-gns_resolver.c,
src/gns/plugin_block_gns.c,
src/gns/test_gns_dht_delegated_lookup.c,
src/gns/test_gns_max_queries.c, src/gns/test_gns_pseu_shorten.c,
src/gns/test_gns_simple_delegated_lookup.c,
src/gns/test_gns_simple_get_authority.c,
src/gns/test_gns_simple_lookup.c,
src/gns/test_gns_simple_mx_lookup.c,
src/gns/test_gns_simple_shorten.c,
src/gns/test_gns_simple_zkey_lookup.c,
src/hostlist/hostlist-client.c, src/include/gnunet_time_lib.h,
src/integration-tests/connection_watchdog.c,
src/mesh/gnunet-service-mesh.c, src/mesh/test_mesh_2dtorus.c,
src/mesh/test_mesh_small.c, src/namestore/gnunet-namestore.c,
src/namestore/gnunet-service-namestore.c,
src/namestore/namestore_api.c,
src/namestore/test_namestore_api.c,
src/namestore/test_namestore_api_create.c,
src/namestore/test_namestore_api_create_update.c,
src/namestore/test_namestore_api_lookup.c,
src/namestore/test_namestore_api_lookup_specific_type.c,
src/namestore/test_namestore_api_put.c,
src/namestore/test_namestore_api_remove.c,
src/namestore/test_namestore_api_remove_not_existing_record.c,
src/namestore/test_namestore_api_zone_iteration.c,
src/namestore/test_namestore_api_zone_iteration_specific_zone.c,
src/namestore/test_namestore_api_zone_iteration_stop.c,
src/namestore/test_namestore_record_serialization.c,
src/nse/gnunet-nse-profiler.c, src/nse/nse_profiler_test.conf,
src/testing/test_testing_2dtorus.c, src/testing/testing_group.c,
src/transport/plugin_transport_http.c,
src/transport/plugin_transport_http_server.c,
src/transport/plugin_transport_udp.c, src/util/test_time.c,
src/util/time.c: renaming GNUNET_TIME_relative_get_forever and
GNUNET_TIME_absolute_get_forever methods, adding underscore, to
make it clear that the respective #defines should be used
instead; replacing use of direct function calls with respective
macros where applicable; adding additional
GNUNET_TIME_relative_get_xxx-functions to avoid calls to
GNUNET_TIME_relative_multiply, which turn out to have gotten
performance-relevant
2012-05-27 21:11 grothoff
* [r21607] src/util/server.c: use
GNUNET_SCHEDULER_add_read_net_with_priority instead of
constructing fd sets in server with only one active listen socket
2012-05-27 21:10 grothoff
* [r21606] src/gns/gnunet-service-gns.c,
src/include/gnunet_scheduler_lib.h, src/util/scheduler.c: adding
GNUNET_SCHEDULER_add_read_net_with_priority
2012-05-26 15:14 harsha
* [r21586] src/testing/test_testing_new_portreservation.c,
src/testing/testing_new.c: port reservation - release
2012-05-26 14:04 harsha
* [r21585] src/testing, src/testing/Makefile.am,
src/testing/test_testing_new_portreservation.c,
src/testing/testing_new.c: port reservation and test cases
2012-05-25 14:40 harsha
* [r21578] src/testing/testing_new.c: testing port reservation
2012-05-25 09:34 wachs
* [r21573] src/transport/plugin_transport_tcp.c,
src/transport/plugin_transport_udp.c: session timeout for udp and
tcp
2012-05-25 08:25 wachs
* [r21572] src/transport/gnunet-service-transport_neighbours.c:
2012-05-23 07:10 wachs
* [r21562] contrib/gnunet_janitor.py.in: LRN's patch
2012-05-22 15:43 harsha
* [r21561] src/stream, src/testing/testing_new.c: testing port
checking (incomplete)
2012-05-22 15:03 harsha
* [r21560] src/stream/test_stream_2peers.c,
src/stream/test_stream_2peers_halfclose.c,
src/stream/test_stream_local.c: fixed segmentation fault due to
missing GNUNET_STREAM_OPTION_END
2012-05-20 15:06 harsha
* [r21552] src/testing/testing_new.c: testing system
2012-05-15 14:07 harsha
* [r21499] src/lockmanager, src/lockmanager/lockmanager_api.c,
src/lockmanager/test_lockmanager_api.c,
src/lockmanager/test_lockmanager_api_servercrash.c: handling
replies continuously from server
2012-05-15 13:09 harsha
* [r21497] src/lockmanager/Makefile.am,
src/lockmanager/lockmanager_api.c,
src/lockmanager/test_lockmanager_api_servercrash.c: server crash
test case
2012-05-15 10:00 wachs
* [r21492] src/transport/gnunet-service-transport_neighbours.c: fix
for mantis 2356
2012-05-15 09:11 wachs
* [r21491] src/transport/plugin_transport_wlan.c: fix memleak
2012-05-15 08:09 wachs
* [r21490] src/transport/gnunet-service-transport_neighbours.c: fix
for mantis 2355
2012-05-14 13:32 harsha
* [r21476] src/lockmanager/lockmanager_api.c: removed local
function
2012-05-14 13:04 harsha
* [r21475] src/stream/stream_api.c,
src/stream/test_stream_2peers_halfclose.c: warnings
2012-05-14 09:06 wachs
* [r21469] src/transport/plugin_transport_udp.c: fix for mantis
2346
2012-05-13 18:07 harsha
* [r21463] src/include/gnunet_lockmanager_service.h,
src/lockmanager/lockmanager_api.c: change in API documentation
and function for finding lockingRequest in hashmap
2012-05-13 17:21 harsha
* [r21462] src/lockmanager, src/lockmanager/Makefile.am,
src/lockmanager/gnunet-service-lockmanager.c,
src/lockmanager/lockmanager_api.c,
src/lockmanager/test_lockmanager_api.conf,
src/lockmanager/test_lockmanager_api_lockrelease.c: clean
shutdown in lockmanager, test case for lock release and message
format checks for incoming msg in lockmanager API
2012-05-12 08:40 harsha
* [r21447] src/stream/stream_api.c: peer ids in logging and
indentation
2012-05-11 21:50 harsha
* [r21442] src/lockmanager/gnunet-service-lockmanager.c: inlining
of helper functions
2012-05-11 13:55 grothoff
* [r21440] src/lockmanager/gnunet-service-lockmanager.c,
src/transport/plugin_transport_wlan.c: doxygen
2012-05-11 08:18 harsha
* [r21435] src/stream/stream_api.c: logging and indentation
2012-05-10 16:26 wachs
* [r21421] src/transport/plugin_transport_wlan.c: fixing WLAN
2012-05-10 15:44 harsha
* [r21420] src/lockmanager/gnunet-service-lockmanager.c: NULL check
on disconnect handler
2012-05-10 15:26 harsha
* [r21419] src/lockmanager/gnunet-service-lockmanager.c:
lockmanager with new datastructure
2012-05-09 14:29 szengel
* [r21387] src/regex/regex.c: fixes
2012-05-09 13:32 wachs
* [r21383] src/util/server_nc.c: fix for mantis 2330#c5818
GNUNET_SERVER_notification_context_destroy does not cancel
transmit_ready
2012-05-09 13:25 szengel
* [r21382] src/regex/regex.c: Fixed warning
2012-05-09 09:59 harsha
* [r21369] src/lockmanager/gnunet-service-lockmanager.c: processing
upon lock release
2012-05-09 08:29 harsha
* [r21367] src/lockmanager/gnunet-service-lockmanager.c: lock
acquire and release
2012-05-09 07:09 harsha
* [r21366] src/lockmanager/gnunet-service-lockmanager.c: added list
processing
2012-05-08 17:10 bartpolot
* [r21352] src/arm/gnunet-service-arm.c,
src/ats/test_ats_api_bandwidth_consumption.c,
src/ats/test_ats_api_scheduling.c, src/chat/test_chat.c,
src/chat/test_chat_private.c, src/core/test_core_api.c,
src/core/test_core_api_reliability.c,
src/core/test_core_api_send_to_self.c,
src/core/test_core_api_start_only.c,
src/core/test_core_quota_compliance.c,
src/datastore/perf_datastore_api.c,
src/datastore/test_datastore_api.c,
src/datastore/test_datastore_api_management.c,
src/dht/test_dht_api.c, src/fs/test_fs.c,
src/fs/test_fs_download.c, src/fs/test_fs_download_indexed.c,
src/fs/test_fs_download_persistence.c,
src/fs/test_fs_download_recursive.c,
src/fs/test_fs_list_indexed.c, src/fs/test_fs_namespace.c,
src/fs/test_fs_namespace_list_updateable.c,
src/fs/test_fs_publish.c, src/fs/test_fs_publish_persistence.c,
src/fs/test_fs_search.c, src/fs/test_fs_search_persistence.c,
src/fs/test_fs_search_probes.c, src/fs/test_fs_search_ranking.c,
src/fs/test_fs_start_stop.c, src/fs/test_fs_unindex.c,
src/fs/test_fs_unindex_persistence.c,
src/hostlist/test_gnunet_daemon_hostlist.c,
src/hostlist/test_gnunet_daemon_hostlist_learning.c,
src/hostlist/test_gnunet_daemon_hostlist_reconnect.c,
src/include/gnunet_os_lib.h,
src/lockmanager/test_lockmanager_api.c, src/mesh/test_mesh_api.c,
src/mesh/test_mesh_local_1.c, src/mesh/test_mesh_local_2.c,
src/namestore/test_namestore_api.c,
src/namestore/test_namestore_api_create.c,
src/namestore/test_namestore_api_create_update.c,
src/namestore/test_namestore_api_lookup.c,
src/namestore/test_namestore_api_lookup_specific_type.c,
src/namestore/test_namestore_api_put.c,
src/namestore/test_namestore_api_remove.c,
src/namestore/test_namestore_api_remove_not_existing_record.c,
src/namestore/test_namestore_api_zone_iteration.c,
src/namestore/test_namestore_api_zone_iteration_specific_zone.c,
src/namestore/test_namestore_api_zone_iteration_stop.c,
src/namestore/test_namestore_api_zone_to_name.c, src/nat/nat.c,
src/nat/nat_mini.c, src/nat/test_nat_test.c,
src/nse/test_nse_api.c, src/peerinfo/perf_peerinfo_api.c,
src/peerinfo/test_peerinfo_api.c,
src/statistics/test_statistics_api.c,
src/statistics/test_statistics_api_loop.c,
src/statistics/test_statistics_api_watch.c,
src/statistics/test_statistics_api_watch_zero_value.c,
src/stream/test_stream_api.c, src/stream/test_stream_local.c,
src/testing/test_testing_large_topology.c,
src/testing/test_testing_topology.c, src/testing/testing.c,
src/testing/testing_group.c,
src/transport/gnunet-transport-certificate-creation.c,
src/transport/gnunet-transport.c,
src/transport/plugin_transport_http_server.c,
src/transport/plugin_transport_wlan.c,
src/transport/transport-testing.c, src/util/crypto_random.c,
src/util/helper.c, src/util/os_priority.c,
src/util/test_common_logging_runtime_loglevels.c,
src/util/test_os_start_process.c, src/util/test_resolver_api.c,
src/vpn/test_gnunet_vpn.c: Renamed GNUNET_OS_process_close to
GNUNET_OS_process_destroy
2012-05-07 17:31 szengel
* [r21330] src/regex/regex.c, src/regex/test_regex_iterate_api.c:
Fixed compilation warnings
2012-05-07 13:35 grothoff
* [r21324] contrib/Makefile.am, contrib/timeout_watchdog_w32.c:
LRN: creating watchdog helper binary for W32
2012-05-07 08:25 wachs
* [r21315] src/transport/gnunet-service-transport_neighbours.c: fix
for mantis 2320
2012-05-04 12:57 bartpolot
* [r21271] src/dht/dht.h, src/dht/dht_api.c,
src/dht/gnunet-service-dht_clients.c: Added stop operation for
dht monitoring
2012-05-03 13:49 grothoff
* [r21248] src/peerinfo/peerinfo_api.c: doxygen
2012-05-03 11:36 grothoff
* [r21244] src/peerinfo/perf_peerinfo_api.c,
src/peerinfo/test_peerinfo_api.c: f-xi
2012-05-02 13:24 wachs
* [r21223] src/peerinfo-tool/gnunet-peerinfo.c: fix 2297
2012-04-27 13:44 wachs
* [r21203] src/transport/plugin_transport_unix.c: working string
toaddress
2012-04-22 19:52 grothoff
* [r21075] src/arm/gnunet-service-arm.c,
src/ats/gnunet-service-ats.c, src/include/gnunet_server_lib.h,
src/include/gnunet_service_lib.h,
src/namestore/gnunet-service-namestore.c,
src/peerinfo/gnunet-service-peerinfo.c,
src/statistics/gnunet-service-statistics.c,
src/transport/gnunet-service-transport.c,
src/transport/gnunet-service-transport_blacklist.c,
src/transport/gnunet-service-transport_clients.c,
src/transport/plugin_transport_tcp.c, src/util/server.c,
src/util/service.c: introducing soft shutdown concept for
services; during soft shutdown, services that are still managing
non-monitor clients continue to run until those clients
disconnect; however, the services do stop to accept new
connections (will stop listening); soft shutdown is now used by
ats, transport, peerinfo, namestore and most importantly
statistics; this should fix #2197
2012-04-21 18:16 grothoff
* [r21060] src/include/gnunet_container_lib.h,
src/util/container_bloomfilter.c: changing bloomfilter to allow
GNUNET_CONTAINER_bloomfilter_init with sizes that are not powers
of 2 -- GNUNET_CONTAINER_bloomfilter_load will continue to round
up to power of two
2012-04-20 12:35 szengel
* [r21054] src/regex/regex.c, src/regex/test_regex_iterate_api.c:
recursion for dfa construction
2012-04-19 11:39 szengel
* [r21025] src/regex/regex.c, src/regex/test_regex_eval_api.c,
src/regex/test_regex_iterate_api.c: dfa minimization fix
2012-04-18 14:02 szengel
* [r21011] src/include/gnunet_regex_lib.h, src/regex/Makefile.am,
src/regex/regex.c, src/regex/test_regex.c,
src/regex/test_regex_eval_api.c,
src/regex/test_regex_iterate_api.c: test update
2012-04-18 13:49 wachs
* [r21009] src/statistics/statistics_api.c: fix 2273
2012-04-18 09:55 wachs
* [r21005] src/statistics/Makefile.am,
src/statistics/gnunet-service-statistics.c,
src/statistics/test_statistics_api_watch_zero_value.c: fixing bug
2272: added functionality for watch to notifz about fresh created
entries with value 0
2012-04-18 09:30 szengel
* [r21004] src/include/gnunet_regex_lib.h, src/regex/regex.c: added
accepting state info to api
2012-04-17 20:43 szengel
* [r21001] src/include/gnunet_regex_lib.h, src/regex/regex.c: api
changes
2012-04-12 13:28 szengel
* [r20965] src/regex/regex.c: bugfix
2012-04-12 11:48 szengel
* [r20959] src/regex/regex.c, src/regex/test_regex.c: Added '?'
operator
2012-04-11 15:30 szengel
* [r20947] src/regex/regex.c: comments
2012-04-11 14:13 szengel
* [r20943] src/regex/regex.c: doxygen fix
2012-04-10 14:37 szengel
* [r20925] src/regex/regex.c, src/regex/test_regex.c: fix
2012-04-10 14:30 szengel
* [r20924] src/regex/regex.c, src/regex/test_regex.c: dfa
minimization wip
2012-04-09 14:56 szengel
* [r20911] src/regex/regex.c, src/regex/test_regex.c: fixes
2012-04-05 14:28 szengel
* [r20905] src/regex/regex.c, src/regex/test_regex.c: removing
unreachable states
2012-04-05 12:38 szengel
* [r20904] src/regex/test_regex.c: better testing
2012-04-05 11:46 szengel
* [r20902] src/regex/regex.c, src/regex/test_regex.c: Automatic
regex generation for testing
2012-04-04 08:21 grothoff
* [r20893] configure.ac, src/fs/fs.conf.in: adding configure option
to run GNUnet with monkey
2012-04-03 13:46 szengel
* [r20883] src/include/gnunet_regex_lib.h, src/regex/Makefile.am,
src/regex/regex.c, src/regex/regex.h, src/regex/test_regex.c: fix
2012-04-02 11:20 wachs
* [r20848] src/transport/plugin_transport_http.c,
src/transport/transport.conf.in: fixing 0002249: report only new
addresses
2012-04-02 10:19 szengel
* [r20847] src/regex/regex.c, src/regex/test_regex.c: NFA
evaluation
2012-04-02 09:39 szengel
* [r20845] src/include/gnunet_regex_lib.h, src/regex/regex.c,
src/regex/test_regex.c: DFA evaluation
2012-04-01 09:13 grothoff
* [r20826] src/core/gnunet-service-core_kx.c: implementing
rekeying, some code cleanup
2012-04-01 07:56 grothoff
* [r20825] doc/man/Makefile.am, doc/man/gnunet-core.1,
src/core/Makefile.am, src/core/gnunet-core-list-connections.c,
src/core/gnunet-core.c, src/include/gnunet_fs_service.h: renaming
gnunet-core-list-connections to gnunet-core, adding man page
2012-03-30 15:43 wachs
* [r20819] src/transport/gnunet-service-transport_neighbours.c:
2012-03-28 19:27 szengel
* [r20801] src/include/gnunet_regex_lib.h, src/regex/regex.c:
doxygen fix
2012-03-28 15:49 szengel
* [r20800] src/include/gnunet_regex_lib.h, src/regex/regex.c,
src/regex/test_regex.c: api changes
2012-03-27 16:37 szengel
* [r20790] src/regex/regex.c, src/regex/test_regex.c: formatting
2012-03-24 19:13 grothoff
* [r20751] src/fs/fs_api.c, src/fs/fs_publish.c, src/fs/fs_tree.c:
fixing issue with gnunet-publish not closing files early enough
when publishing directories with more than FD_MAX files (#2239)
2012-03-24 09:05 harsha
* [r20740] src/include/gnunet_stream_lib.h,
src/stream/stream_api.c: fixed compile error from r20729
2012-03-23 17:40 szengel
* [r20738] src/include/gnunet_regex_lib.h, src/regex/regex.c,
src/regex/test_regex.c: towards dfa
2012-03-23 11:15 harsha
* [r20714] src/stream/stream_api.c: bugfix
2012-03-23 10:58 harsha
* [r20711] src/stream/stream_api.c, src/stream/stream_protocol.h:
fixed read packets removal after read processor,
byte ordering bugs,
ack_bitmap handling in handle_ack
ack_task cancelling in socket close
2012-03-23 08:04 szengel
* [r20699] src/regex/regex.c: fix
2012-03-22 21:25 szengel
* [r20698] src/regex/regex.c: cleanup
2012-03-22 19:41 szengel
* [r20697] configure.ac, pkgconfig/gnunetregex.pc,
src/include/gnunet_regex_lib.h, src/regex/Makefile.am,
src/regex/regex.c, src/regex/regex.h, src/regex/test_regex.c:
Added initial version of regex lib
2012-03-22 18:47 grothoff
* [r20693] configure.ac, src/Makefile.am,
src/datacache/Makefile.am,
src/datacache/plugin_datacache_postgres.c,
src/datastore/plugin_datastore_postgres.c,
src/include/Makefile.am, src/include/gnunet_mysql_lib.h,
src/include/gnunet_postgres_lib.h, src/postgres,
src/postgres/Makefile.am, src/postgres/postgres.c: adding
libgnunetpostgres for shared postgres functionality between
postgres datastore/datacache backends
2012-03-22 11:05 wachs
* [r20670] src/include/gnunet_namestore_service.h,
src/namestore/gnunet-service-namestore.c,
src/namestore/namestore.h, src/namestore/namestore_common.c:
2012-03-21 12:32 harsha
* [r20644] src/stream/stream_api.c, src/stream/test_stream_local.c:
fixed read timeout problem and added ack sending incase of
ignored data messages
2012-03-21 09:43 grothoff
* [r20643] src/Makefile.am, src/include/Makefile.am, src/mysql,
src/mysql/Makefile.am, src/mysql/mysql.c: creating mysql helper
library for the various mysql backends
2012-03-21 07:06 harsha
* [r20639] src/stream/stream_api.c, src/stream/test_stream_local.c:
fixed listen callback to happen after reaching ESTABLISHED state
2012-03-19 14:53 grothoff
* [r20606] configure.ac, src/core/core.conf.in,
src/dht/dht.conf.in, src/nse/nse.conf.in,
src/statistics/statistics.conf.in: add configure option
--enable-javaports to open ports of services with Java bindings
by default (#2228)
2012-03-19 10:17 grothoff
* [r20598] doc/man/gnunet-rsa.1, src/datastore/datastore.h,
src/exit/exit.h, src/fs/gnunet-service-fs.h,
src/include/block_dns.h, src/include/gnunet_common.h,
src/include/gnunet_crypto_lib.h,
src/include/gnunet_strings_lib.h, src/util/crypto_hash.c,
src/util/gnunet-rsa.c, src/util/strings.c, src/vpn/vpn.h: adding
API for short (256-bit) hash codes
2012-03-16 14:47 grothoff
* [r20570] src/gns/gnunet-gns-fcfsd.c: fix
2012-03-15 21:24 wachs
* [r20551] src/namestore/gnunet-namestore.c:
2012-03-15 18:22 wachs
* [r20548] src/namestore/gnunet-service-namestore.c: fix segfault
2012-03-15 10:59 grothoff
* [r20515] doc/man/gnunet-rsa.1, src/util/gnunet-rsa.c: add -P
option for printing peer identities with gnunet-rsa
2012-03-11 22:51 grothoff
* [r20445] src/hostlist/hostlist-server.c,
src/hostlist/hostlist.conf: vminko: implementing BINDTO option
for hostlist service (#2140)
2012-03-10 23:17 grothoff
* [r20431] src/include/gnunet_transport_plugin.h,
src/transport/plugin_transport_http.c,
src/transport/plugin_transport_tcp.c,
src/transport/plugin_transport_udp.c,
src/transport/plugin_transport_unix.c,
src/transport/plugin_transport_wlan.c: add support for stub-mode
for transport plugins
2012-03-10 15:09 harsha
* [r20424] src/stream/stream_api.c: using
GNUNET_STREAM_ACK_BITMAP_BIT_LENGTH
2012-03-10 09:13 harsha
* [r20423] src/stream/stream_api.c, src/stream/test_stream_local.c:
fixed retransmission task
2012-03-09 15:16 grothoff
* [r20415] src/fs/fs_api.c, src/fs/fs_api.h, src/fs/fs_unindex.c:
implementing removal of KBlocks during unindex operation (#1926)
2012-03-09 12:53 harsha
* [r20407] src/stream/stream_api.c, src/stream/stream_protocol.h,
src/stream/test_stream_local.c: fixed byte conversion bugs
2012-03-09 11:39 grothoff
* [r20398] src/arm/gnunet-service-arm.c: adding code to measure and
report shutdown time for services to gnunet-service-arm at INFO
level logging
2012-03-09 08:50 harsha
* [r20390] src/stream/stream_api.c: corrected HELLO_ACK message
size
2012-03-08 17:26 wachs
* [r20375] src/namestore/gnunet-service-namestore.c,
src/namestore/hostkey, src/namestore/hostkey2,
src/namestore/namestore.conf.in,
src/namestore/test_namestore_api.c,
src/namestore/test_namestore_api.conf,
src/namestore/test_namestore_api_create.c,
src/namestore/test_namestore_api_create_update.c,
src/namestore/test_namestore_api_lookup.c,
src/namestore/test_namestore_api_lookup_specific_type.c,
src/namestore/test_namestore_api_put.c,
src/namestore/test_namestore_api_remove.c,
src/namestore/test_namestore_api_remove_not_existing_record.c,
src/namestore/test_namestore_api_sign_verify.c,
src/namestore/test_namestore_api_zone_iteration.c,
src/namestore/test_namestore_api_zone_iteration_specific_zone.c,
src/namestore/test_namestore_api_zone_iteration_stop.c,
src/namestore/test_namestore_api_zone_to_name.c,
src/namestore/zonefiles,
src/namestore/zonefiles/4UCICULTINKC87UO4326KEEDQ9MTEP2AJT88MJFVGTGNK12QNGMQI2S41VI07UUU6EO19BTB06PDL0HE6VP1OM50HOJEI75RHP4JP80.zone,
src/namestore/zonefiles/KJI3AL00K91EDPFJF58DAJM7H61D189TLP70N56JL8SVDCJE1SJ3SNNBOQPPONTL37FMHPS39SMK2NMVC0GQMGA6QCMHITT78O8GF80.zone:
namestore manages zonekey files with private keys
2012-03-08 16:30 harsha
* [r20373] src/stream/stream_api.c: peer interning
2012-03-08 13:23 harsha
* [r20365] src/stream/stream_api.c, src/stream/test_stream_local.c:
more assertions
2012-03-08 07:45 harsha
* [r20362] src/stream/stream_api.c, src/stream/test_stream_local.c:
Data message retransmissions
2012-03-07 12:45 wachs
* [r20336] src/gns/gnunet-gns-fcfsd.c,
src/gns/namestore_stub_api.c,
src/gns/test_gns_dht_delegated_lookup.c,
src/gns/test_gns_simple_delegated_lookup.c,
src/gns/test_gns_simple_lookup.c, src/gns/test_gns_twopeer.c,
src/include/gnunet_namestore_service.h,
src/namestore/gnunet-namestore.c,
src/namestore/gnunet-service-namestore.c,
src/namestore/namestore_api.c,
src/namestore/test_namestore_api.conf,
src/namestore/test_namestore_api_create.c,
src/namestore/test_namestore_api_create_update.c,
src/namestore/test_namestore_api_zone_iteration.c,
src/namestore/test_namestore_api_zone_iteration_specific_zone.c,
src/namestore/test_namestore_api_zone_iteration_stop.c: namestore
api change: include block expiration time in record create
2012-03-07 10:11 grothoff
* [r20329] src/namestore/namestore_common.c: implementing more of
GNUNET_NAMESTORE_value_to_string
2012-03-06 09:50 grothoff
* [r20302] src/namestore/namestore.h: breaking stuff
2012-03-05 21:04 grothoff
* [r20294] src/statistics/gnunet-service-statistics.c: fix
2012-03-05 15:38 grothoff
* [r20282] src/include/gnunet_gns_service.h: fix
2012-03-04 22:55 grothoff
* [r20258] src/fs/fs.conf.in, src/fs/fs_api.c: adding fs/ to all
default directory names relating to file sharing
2012-03-04 22:10 grothoff
* [r20252] src/fs/fs_api.c: fixing #1927 by further limiting the
time a download probe can be active at a time in the download
queue; this is equivalent to it having a low priority
2012-03-04 20:59 grothoff
* [r20246] src/statistics/gnunet-service-statistics.c,
src/statistics/statistics.h, src/statistics/statistics_api.c:
make gnunet-service-statistics not exit on external shutdown
signal as long as there are connected clients to be managed
2012-03-04 15:02 grothoff
* [r20241] doc/man/Makefile.am, doc/man/gnunet-gns.1,
src/gns/Makefile.am, src/gns/gnunet-gns.c: adding gnunet-gns, a
new tool for zone manipulations
2012-03-04 14:37 grothoff
* [r20237] doc/man/Makefile.am, doc/man/gnunet-rsa.1,
src/util/Makefile.am, src/util/gnunet-rsa.c: adding gnunet-rsa, a
new tool to create RSA keys and to print the public key
2012-03-04 13:51 grothoff
* [r20232] src/include/gnunet_crypto_lib.h, src/util/crypto_hash.c:
LRN: adding generic functions for conversion of binary data to
ascii and back: GNUNET_CRYPTO_string_to_data and
GNUNET_CRYPTO_data_to_string
2012-03-02 17:29 wachs
* [r20206] src/namestore/Makefile.am,
src/namestore/gnunet-service-namestore.c,
src/namestore/namestore.h, src/namestore/namestore_api.c,
src/namestore/test_namestore_api_put.c:
2012-03-02 15:39 wachs
* [r20205] src/transport/plugin_transport_tcp.c: fix for mantis
2189
2012-03-01 11:58 szengel
* [r20164] src/arm/gnunet-service-arm.c: Using GNUNET_snprintf.
2012-03-01 08:24 grothoff
* [r20154] src/chat/gnunet-chat.c, src/fs/fs_uri.c,
src/fs/gnunet-pseudonym.c, src/include/gnunet_pseudonym_lib.h,
src/util/pseudonym.c, src/util/test_pseudonym.c: LRN: updates to
pseudonym API from #1952, change pseudonym management
2012-02-29 19:21 wachs
* [r20150] src/include/gnunet_crypto_lib.h, src/util/crypto_rsa.c:
serialize privat key
2012-02-29 12:50 grothoff
* [r20143] src/include/gnunet_common.h,
src/include/gnunet_dnsparser_lib.h, src/include/gnunet_tun_lib.h:
LRN: Enforce GCC bitfield layout for some structs on W32
2012-02-29 11:11 wachs
* [r20142] src/include/gnunet_namestore_plugin.h,
src/include/gnunet_namestore_service.h,
src/namestore/gnunet-service-namestore.c,
src/namestore/namestore_api.c,
src/namestore/plugin_namestore_sqlite.c,
src/namestore/test_namestore_api_lookup.c: nametore api change
2012-02-29 08:59 szengel
* [r20135] src/arm/arm.h, src/arm/arm_api.c, src/arm/gnunet-arm.c,
src/arm/gnunet-service-arm.c, src/include/gnunet_arm_service.h,
src/include/gnunet_protocols.h: Adding arm list/info feature.
2012-02-28 19:08 grothoff
* [r20127] src/include/gnunet_crypto_lib.h, src/util/crypto_rsa.c,
src/vpn/test_gnunet_vpn.c: adding GNUNET_CRYPTO_setup_hostkey to
setup a hostkey ahead of time, using this function in the VPN
testcases to avoid timeouts in cases where creating a hostkey
just takes too long --- such as on our UltraSprac
2012-02-28 17:29 grothoff
* [r20121] src/util/os_priority.c: LRN: Apparently cleanup is not
for W32
2012-02-28 17:28 grothoff
* [r20120] po/de.po, po/es.po, po/sv.po, po/vi.po, po/zh_CN.po,
src/util/os_priority.c: LRN: W32 pipe name generation needs
random
2012-02-28 10:54 grothoff
* [r20112] po/de.po, po/es.po, po/sv.po, po/vi.po, po/zh_CN.po:
releasing GNUnet 0.9.2
2012-02-28 09:32 grothoff
* [r20097] configure.ac, src/Makefile.am: add gns
2012-02-28 09:08 schanzen
* [r20093] src/gns/plugin_block_gns.c: -fix
2012-02-27 20:00 wachs
* [r20087] configure.ac: enabling libglpk detection
2012-02-27 11:00 grothoff
* [r20060] src/arm/arm_api.c, src/arm/do_start_process.c,
src/arm/gnunet-service-arm.c,
src/ats/test_ats_api_bandwidth_consumption.c,
src/ats/test_ats_api_scheduling.c, src/chat/test_chat.c,
src/chat/test_chat_private.c, src/core/test_core_api.c,
src/core/test_core_api_reliability.c,
src/core/test_core_api_send_to_self.c,
src/core/test_core_api_start_only.c,
src/core/test_core_defaults.conf,
src/core/test_core_quota_compliance.c,
src/datastore/perf_datastore_api.c,
src/datastore/test_datastore_api.c,
src/datastore/test_datastore_api_management.c,
src/datastore/test_defaults.conf, src/dht/test_dht_api.c,
src/fs/test_fs_defaults.conf, src/fs/test_fs_download.c,
src/fs/test_fs_download_indexed.c,
src/fs/test_fs_download_persistence.c,
src/fs/test_fs_list_indexed.c, src/fs/test_fs_namespace.c,
src/fs/test_fs_namespace_list_updateable.c,
src/fs/test_fs_publish.c, src/fs/test_fs_publish_persistence.c,
src/fs/test_fs_search.c, src/fs/test_fs_search_persistence.c,
src/fs/test_fs_start_stop.c, src/fs/test_fs_unindex.c,
src/fs/test_fs_unindex_persistence.c,
src/hostlist/test_gnunet_daemon_hostlist.c,
src/hostlist/test_gnunet_daemon_hostlist_learning.c,
src/hostlist/test_gnunet_daemon_hostlist_reconnect.c,
src/hostlist/test_hostlist_defaults.conf,
src/include/gnunet_disk_lib.h, src/include/gnunet_os_lib.h,
src/include/platform.h, src/mesh/test_mesh_api.c,
src/mesh/test_mesh_local_1.c, src/mesh/test_mesh_local_2.c,
src/namestore/test_namestore_api.c, src/nat/nat.c,
src/nat/nat_mini.c, src/nat/test_nat_test.c,
src/nse/test_nse_api.c, src/peerinfo/test_peerinfo_api.c,
src/statistics/test_statistics_api.c,
src/statistics/test_statistics_api_loop.c,
src/statistics/test_statistics_api_watch.c,
src/stream/test_stream_local.c,
src/stream/test_stream_local_halfclose.c,
src/testing/test_testing_defaults.conf, src/testing/testing.c,
src/testing/testing_group.c,
src/transport/gnunet-transport-certificate-creation.c,
src/transport/gnunet-transport-connect-running-peers.c,
src/transport/gnunet-transport.c,
src/transport/plugin_transport_http_server.c,
src/transport/plugin_transport_wlan.c,
src/transport/transport-testing.c, src/util/crypto_random.c,
src/util/disk.c, src/util/helper.c, src/util/os_priority.c,
src/util/scheduler.c,
src/util/test_common_logging_runtime_loglevels.c,
src/util/test_os_start_process.c, src/util/test_resolver_api.c,
src/util/test_strings.c, src/vpn/test_gnunet_vpn.c: enabling use
of pipes for signal communication also on UNIX to enable future
integration with Java services
2012-02-27 10:54 wachs
* [r20059] src/transport/test_transport_api.c: adding error
messages
2012-02-25 19:08 grothoff
* [r20026] doc/man/gnunet-directory.1, doc/man/gnunet-download.1,
doc/man/gnunet-nat-server.1, doc/man/gnunet-pseudonym.1,
doc/man/gnunet-publish.1, doc/man/gnunet-search.1,
doc/man/gnunet-vpn.1: Igor/CG: various minor updates to man pages
2012-02-24 06:54 grothoff
* [r19998] src/include/winproc.h, src/util/os_network.c:
bratao/LRN: Use-bigger-buffer-for-EnumNICs3_results
2012-02-23 18:09 wachs
* [r19993] src/transport/gnunet-service-transport_validation.c: not
an error: plugin can return NULL (e.g. for IPv6 address when does
not support IPv6)
2012-02-23 18:08 wachs
* [r19992] src/transport/plugin_transport_unix.c: improved
rescheduling
improved recv error handling
2012-02-23 17:35 wachs
* [r19983] src/transport/plugin_transport_udp.c,
src/transport/plugin_transport_udp.h: splitted ipv4 and ipv6
socket select scheduling
removed looping for write select
improved ipv4/v6 en/disabling
session management
2012-02-23 16:41 grothoff
* [r19979] AUTHORS, src/include/gnunet_common.h,
src/include/gnunet_crypto_lib.h, src/include/gnunet_server_lib.h,
src/util/common_logging.c, src/util/crypto_hash.c,
src/util/server.c: TG: attached are the following patches for
GNUnet:
- 1: added GNUNET_i2s_full - full variant of GNUNET_i2s
- 2: GNUNET_CRYPTO_hash_from_string2 with additional length
parameter,
useful to prevent an additional strlen call when the caller
already knows
the length
- 3: custom mst callbacks for the server, enables using the
server with a
custom parser
- 4: added GNUNET_SERVER_client_set_finish_pending_write -
enables changing the
server behavior to finish pending writes when closing the
connection
Best regards,
Gabor Adam Toth
2012-02-23 16:01 wachs
* [r19975] src/transport/plugin_transport_unix.c: fix to the 100%
CPU load problem
2012-02-23 15:34 wachs
* [r19974] src/transport/gnunet-service-transport_neighbours.c:
fix: ats suggested address for unknown plugin
2012-02-23 14:40 wachs
* [r19968] src/ats/Makefile.am,
src/ats/gnunet-service-ats_addresses_mlp.c,
src/ats/gnunet-service-ats_addresses_mlp.h,
src/ats/test_ats_api.conf, src/ats/test_ats_mlp.c: averaging fast
changing quality values
2012-02-23 10:28 wachs
* [r19962] src/transport/plugin_transport_udp.c: fix for mantis bug
0002154:
change order of calls:
- discard unsend messages
- call transmit send continuation
- call session_end
2012-02-23 10:18 wachs
* [r19961] src/transport/plugin_transport_udp.c: fix to use correct
queue
2012-02-22 18:34 grothoff
* [r19949] src/fs/fs_api.c, src/fs/fs_dirmetascan.c,
src/fs/fs_file_information.c, src/fs/fs_publish.c,
src/fs/fs_sharetree.c, src/fs/gnunet-helper-fs-publish.c,
src/fs/gnunet-publish.c: LRN: two directory patches change the
way "is_directory" is evaluated.
Now it must be GNUNET_YES for the execution flow to switch to a
branch
where something is considered to be a directory.
The reason for that is that some functions might return
GNUNET_SYSERR
when asked whether something is a directory or not. Checking this
value as "!= GNUNET_NO" will produce positive result, even though
it's
not a directory.
2012-02-22 12:43 wachs
* [r19932] src/transport/gnunet-service-transport_validation.c: fix
coverity 10138
2012-02-22 10:10 harsha
* [r19915] src/stream/stream_api.c: added ack sending
2012-02-21 19:08 grothoff
* [r19906] src/util/os_priority.c: LRN:
Escape-trailing-slash-when-spawning-W32-process:
2012-02-21 10:12 schanzen
* [r19881] src/gns/gnunet-service-gns.c,
src/gns/namestore_stub_api.c: Better logging
modified ns stub
2012-02-20 14:28 schanzen
* [r19868] src/gns/Makefile.am, src/gns/gns_api.c,
src/gns/gnunet-service-gns.c, src/gns/namestore_stub_api.c,
src/include/gnunet_gns_service.h,
src/include/gnunet_namestore_service.h: namestore stub api added
fixes to namestore api
2012-02-20 12:08 grothoff
* [r19864] src/fs/gnunet-helper-fs-publish.c: LRN:
Do-partial-serialization-in-fs-publish-helper:
2012-02-20 09:09 grothoff
* [r19859] src/fs/fs_sharetree.c: LRN:
Iterate-over-a-copy-of-ksk-when-removing-items
2012-02-20 09:09 grothoff
* [r19858] src/fs/gnunet-service-fs_put.c: LRN: check for tc being
NULL
2012-02-18 19:03 grothoff
* [r19844] src/fs/Makefile.am, src/fs/fs_api.h,
src/fs/fs_list_indexed.c, src/fs/fs_namespace.c,
src/fs/fs_namespace_advertise.c, src/fs/fs_publish.c,
src/fs/fs_publish_ksk.c, src/fs/fs_tree.c, src/fs/gnunet-fs.c,
src/fs/gnunet-publish.c, src/include/gnunet_fs_service.h: make
all (?) asynchronously operating FS operations actually
cancel-able
2012-02-18 15:16 grothoff
* [r19837] src/fs/fs_namespace.c, src/include/gnunet_fs_service.h:
add GNUNET_FS_namespace_dup API call
2012-02-18 13:50 grothoff
* [r19836] src/util/disk.c: LRN: don't free memory on the stack
2012-02-16 14:29 wachs
* [r19820] src/transport/gnunet-service-transport_neighbours.c: fix
for fast reconnect: send ack after fast reconnect even when we
are already connected since other peer waits for it
2012-02-16 14:28 wachs
* [r19819] src/transport/test_transport_api_restart_1peer.c: fix
test for peer restart
2012-02-16 12:58 grothoff
* [r19817] src/fs/gnunet-helper-fs-publish.c: LRN: Use binary mode
on W32 (lol -CG)
2012-02-15 13:39 schanzen
* [r19812] src/gns/gns_api.c, src/gns/gnunet-gns-add.c,
src/gns/gnunet-gns-lookup.c, src/gns/gnunet-service-gns.c,
src/include/gnunet_gns_service.h: Added preliminary API and stubs
for GNS
2012-02-15 09:49 wachs
* [r19811] src/transport/gnunet-service-transport_neighbours.c: fix
for Assertion failed at gnunet-service-ats_addresses.c:587
2012-02-13 16:36 wachs
* [r19795] src/include/gnunet_transport_plugin.h: changes in
includes
2012-02-13 16:02 wachs
* [r19791] src/transport/gnunet-service-transport_neighbours.c,
src/transport/gnunet-service-transport_validation.c,
src/transport/plugin_transport_http.c,
src/transport/plugin_transport_tcp.c,
src/transport/plugin_transport_template.c,
src/transport/plugin_transport_udp.c,
src/transport/plugin_transport_unix.c,
src/transport/plugin_transport_wlan.c: removing legacy send
functions from plugins and renaming new send function
2012-02-13 15:38 wachs
* [r19790] src/transport/gnunet-service-transport_validation.c,
src/transport/plugin_transport_http.h: new sending in validation
2012-02-13 13:27 wachs
* [r19777] src/transport/plugin_transport_tcp.c: fix access before
null check
2012-02-13 12:22 wachs
* [r19775] src/transport/gnunet-service-transport_neighbours.c:
removing old send code from neighbours
2012-02-13 11:57 wachs
* [r19771] src/transport/Makefile.am,
src/transport/gnunet-service-transport_neighbours.c,
src/transport/plugin_transport_udp.c,
src/transport/plugin_transport_udp.h,
src/transport/plugin_transport_udp_broadcasting.c,
src/transport/plugin_transport_udp_new.h,
src/transport/plugin_transport_udp_new_broadcasting.c: adding
rewritten udp plugin
2012-02-13 10:58 wachs
* [r19770] src/ats/gnunet-service-ats_math.c,
src/ats/gnunet-service-ats_math.h: removing backup ATS code
2012-02-08 15:23 bartpolot
* [r19733] src/mesh/gnunet-service-mesh.c, src/mesh/mesh_api.c,
src/mesh/test_mesh_small.c: Attemp to fix ctrl-c crashes -
disconnect from services before calling daemons_stop, since the
cfg is free'd in the latter.
2012-02-06 09:34 grothoff
* [r19707] doc/man/gnunet-transport.1,
src/transport/gnunet-transport.c: adding -m option to
gnunet-transport to enable monitor mode (see #1972)
2012-02-01 17:37 bartpolot
* [r19608] src/include/gnunet_common.h: Let the compiler not
include debug strings in binary when make is not configured with
verbose
2012-02-01 17:08 wachs
* [r19603] src/transport/Makefile.am,
src/transport/gnunet-service-transport_blacklist.c,
src/transport/test_transport_api_blacklisting.c,
src/transport/transport_api_blacklist.c: fixing and testing
blacklisting api and service
2012-02-01 15:00 wachs
* [r19598] src/transport/test_transport_api_blacklisting.c:
improved blacklisting test
2012-02-01 14:59 wachs
* [r19597] src/transport/transport_api_blacklist.c: fix 2 crashes
in blacklisting api
- client transmit handle was not sent to NULL after sending
- BlacklistMessage was not checked for NULL
2012-02-01 13:26 wachs
* [r19596] src/transport/transport_api_blacklist.c: fix segfault:
api never saved callback and callback_cls
2012-02-01 09:04 wachs
* [r19591] src/transport/gnunet-service-transport_blacklist.c:
added assertion (which is successfully failing ;-) )
2012-01-31 13:46 wachs
* [r19571] src/transport/plugin_transport_wlan.c: session based
sending for wlan
2012-01-31 13:12 wachs
* [r19568] src/util/os_network.c: ifconfig parsing
Shum's patch
bugs fixed in patch:
- IPv4 loopback address was not included: added line 179
- stack allocated strings were not zeroed out, so last value was
used if value was not included in current line
- IPv4 netmask was passed as broadcast address (patch line 81)
- IPv4 netmask was passed as IPv6 netmask, caused invalid address
conversion (patch line 113)
2012-01-31 13:04 wachs
* [r19567] src/util/test_os_network.c: adding verbose message
2012-01-31 08:25 wachs
* [r19563] src/ats/ats_api_scheduling.c, src/hello/address.c,
src/include/gnunet_ats_service.h: fixing const api and add check
to address
2012-01-31 08:19 wachs
* [r19562] src/transport/test_transport_api.c: fix assertion
2012-01-30 16:38 wachs
* [r19543] src/transport/test_transport_api.c: variable message
size
2012-01-27 15:51 wachs
* [r19486] src/transport/plugin_transport_unix.c: implemented
sessions
2012-01-27 14:30 wachs
* [r19485] src/transport/plugin_transport_unix.c: removing retry
code
removing unused structs
removing UDP Address structs
fixed PrettyPrinter (printed UDP addresses???)
2012-01-27 13:48 wachs
* [r19484] src/transport/plugin_transport_unix.c: complete select
write implementation
2012-01-27 13:21 wachs
* [r19483] src/transport/test_transport_api.c: fix memory leaks
2012-01-26 14:53 wachs
* [r19440] src/transport/gnunet-service-transport_neighbours.c:
fixing mantis 2101
2012-01-26 14:09 wachs
* [r19437] src/transport/gnunet-service-transport_neighbours.c,
src/transport/plugin_transport_http.c,
src/transport/plugin_transport_http_server.c: implemented session
based sending in transport service (coexisting with old code)
2012-01-26 14:01 bartpolot
* [r19436] src/mesh/gnunet-service-mesh.c: Workaround for #2104,
initialize local tid when local type destination connects after
tunnel connect request by origin
2012-01-26 13:23 wachs
* [r19435] src/ats/ats_api.c,
src/ats/gnunet-service-ats_addresses_mlp.c: cppcheck
2012-01-25 14:22 wachs
* [r19389] src/ats/gnunet-service-ats_scheduling.c: clang: mem
access if plugin_name_length == 0
2012-01-25 13:56 wachs
* [r19387] src/transport/plugin_transport_tcp.c: coverity 10054
2012-01-25 13:55 wachs
* [r19386] src/transport/plugin_transport_http_client.c: coverity
10048
2012-01-24 20:28 grothoff
* [r19359] src/vpn: ign
2012-01-24 01:32 bartpolot
* [r19334] src/mesh/gnunet-service-mesh.c: Changed incoming tunnel
notification to delay until relvant traffic is received from
remote peer. Allowed several remote clients for each tunnel.
2012-01-23 15:45 wachs
* [r19331] src/ats/gnunet-service-ats_addresses.c: fixing mantis
2098:
ats did not lookup addresses correctly
ats overwrote existing session when updating addresses
2012-01-23 15:43 wachs
* [r19330] src/transport/gnunet-service-transport_neighbours.c:
fixing: mantis 0002098: transport did not propagate session to
ats
2012-01-23 14:54 grothoff
* [r19329] src/include/gnunet_common.h: use noreturn macro for
GNUNET_abort to help gcc and others
2012-01-23 09:14 grothoff
* [r19322] src/util/win.cc: It-might-be-NULL
2012-01-20 15:41 bartpolot
* [r19283] src/include/gnunet_mesh_service.h: Reflected changes in
r19282.
2012-01-20 15:40 bartpolot
* [r19282] src/mesh/mesh_api.c: Don't call cleaner on tunnels
explicity destroyed. Updated and improved documentation.
2012-01-20 12:49 bartpolot
* [r19280] src/mesh/gnunet-service-mesh.c: Fixed bug with remote
tunnel traffic reception
2012-01-20 12:48 bartpolot
* [r19279] src/mesh/mesh_api.c: Added more debug info
2012-01-19 23:17 bartpolot
* [r19274] src/mesh/gnunet-service-mesh.c: Added TTL and MID
initialization to tunnel refresh packets.
2012-01-19 23:00 bartpolot
* [r19273] src/mesh/gnunet-service-mesh.c: Fixed #2088, don't call
receive_done on traffic not generated by client. Improved debug
output.
2012-01-19 22:39 bartpolot
* [r19272] src/mesh/gnunet-service-mesh.c: Fixed #2087, wrong local
tunnel number sent when multiple clients are subscribed to one
type message on same peer and one clientis owner of the tunnel
and the other is target
2012-01-19 22:13 bartpolot
* [r19271] src/mesh/mesh_api.c: Fixed a memory leak on disconnect,
double peer_rc decrease on tunnel destroy, adjusted backoff,
completed doxygen
2012-01-19 15:20 bartpolot
* [r19260] src/mesh/gnunet-service-mesh.c: Fixed client disconnect
bug, delimited debug messages.
2012-01-19 14:33 bartpolot
* [r19258] src/mesh/mesh_api.c: Fixed a peer_rc bug.
2012-01-19 11:06 bartpolot
* [r19253] src/mesh/gnunet-service-mesh.c: Fixed an assert error
when a client disconnects with open tunnels and without doing
MESH_disconnect
2012-01-19 10:58 bartpolot
* [r19252] src/mesh/mesh_api.c: Improved debug message
2012-01-18 19:28 grothoff
* [r19248] src/include/gnunet_testing_lib.h,
src/testing/Makefile.am, src/testing/helper.c: implementing
GNUNET_TESTING_get_peer_identity (addressing #2083)
2012-01-18 15:10 bartpolot
* [r19244] src/mesh/gnunet-service-mesh.c: Fixed client shutdown
case, various minor fixes
2012-01-18 12:47 bartpolot
* [r19233] src/mesh/gnunet-service-mesh.c: Implemented workaround
for #2071
2012-01-18 11:27 bartpolot
* [r19228] src/mesh/gnunet-service-mesh.c: Allowed client to send
again
2012-01-18 11:17 bartpolot
* [r19227] src/mesh/gnunet-service-mesh.c: Fixed a bug when a
multicast packet is delivered exclusively to local clients
2012-01-17 19:45 bartpolot
* [r19217] src/mesh/mesh_api.c: Added debug info for #2071
2012-01-17 17:29 bartpolot
* [r19208] src/mesh/gnunet-service-mesh.c: Fixed #2070 and
simplified data transmission unicast/multicast handling
2012-01-17 16:17 bartpolot
* [r19206] src/mesh/gnunet-service-mesh.c: Temporal workaround for
#2070
2012-01-17 16:13 bartpolot
* [r19204] src/mesh/gnunet-service-mesh.c: Temporl workaround for
#2070
2012-01-17 15:36 bartpolot
* [r19196] src/mesh/mesh_api.c: Fixed queue bug
2012-01-16 21:11 grothoff
* [r19181] src/pt/gnunet-daemon-pt.c: implemented new protocol
translation daemon (#2063)
2012-01-16 17:17 harsha
* [r19176] src/stream/test_stream_local.c,
src/stream/test_stream_local_halfclose.c: refined test cases
2012-01-15 23:40 grothoff
* [r19169] doc/man/Makefile.am, doc/man/gnunet-download-manager.1,
src/fs/Makefile.am, src/fs/gnunet-download-manager.scm: adding
Ludo's gnunet-download-manager.scm back to SVN HEAD
2012-01-14 23:18 grothoff
* [r19146] src/arm/gnunet-service-arm.c, src/fs/fs_dirmetascan.c,
src/include/gnunet_disk_lib.h, src/nat/nat.c, src/nat/nat_mini.c,
src/testing/testing.c, src/transport/plugin_transport_wlan.c,
src/util/disk.c, src/util/helper.c, src/util/os_priority.c,
src/util/scheduler.c,
src/util/test_common_logging_runtime_loglevels.c,
src/util/test_os_start_process.c, src/util/test_scheduler.c: LRN:
enable more fine-grained control over blocking/non-blocking pipe
operation
2012-01-14 20:58 grothoff
* [r19141] src/exit/exit.conf, src/exit/gnunet-daemon-exit.c,
src/exit/gnunet-helper-exit.c: changing exit helper code to
automatically do the network configuration for an exit node (by
running sysctl/iptables commands as necessary)
2012-01-14 15:24 grothoff
* [r19135] src/fs/Makefile.am, src/include/gnunet_fs_service.h:
LRN: new threaded directory metadata scanner
2012-01-14 15:20 grothoff
* [r19134] src/fs/fs_uri.c: LRN: skip short keywords when
generating keywords automatically from metadata
2012-01-14 15:20 grothoff
* [r19133] src/include/gnunet_disk_lib.h, src/util/disk.c: LRN: new
pipe creation function GNUNET_DISK_pipe_from_fd to wrap existing
file descriptor pair
2012-01-14 15:17 grothoff
* [r19131] src/include/gnunet_strings_lib.h, src/util/strings.c:
LRN: add function GNUNET_STRINGS_get_short_name to get basename
2012-01-13 22:14 harsha
* [r19130] src/stream/test_stream_local.c: added half-closed
shutdown test
2012-01-13 22:10 grothoff
* [r19129] configure.ac, src/dht/dht.conf.in, src/dns/Makefile.am,
src/dns/dns.conf.in, src/dv/dv.conf.in,
src/transport/transport.conf.in, src/util/service.c,
src/vpn/vpn.conf.in: improving code and build system to be in
line with gnunet access control model for services as described
at https://gnunet.org/gnunet-access-control-model
2012-01-13 21:33 harsha
* [r19128] src/stream/test_stream_local.c: added shutdown call in
testcase
2012-01-13 21:33 harsha
* [r19127] src/include/gnunet_stream_lib.h: removed ambigious
description
2012-01-13 18:10 harsha
* [r19126] src/stream/stream_protocol.h,
src/stream/test_stream_local.c,
src/stream/test_stream_local.conf: test case for stream API
2012-01-13 17:41 harsha
* [r19125] src/include/gnunet_stream_lib.h: generic type for read
data
2012-01-13 17:04 grothoff
* [r19123] configure.ac, src/arm/Makefile.am, src/arm/arm.conf,
src/arm/arm.conf.in, src/ats/Makefile.am, src/ats/ats.conf,
src/ats/ats.conf.in, src/chat/Makefile.am, src/chat/chat.conf,
src/chat/chat.conf.in, src/core/Makefile.am, src/core/core.conf,
src/core/core.conf.in, src/datastore/Makefile.am,
src/datastore/datastore.conf, src/datastore/datastore.conf.in,
src/dht/Makefile.am, src/dht/dht.conf, src/dht/dht.conf.in,
src/dns/Makefile.am, src/dns/dns.conf, src/dns/dns.conf.in,
src/dv/Makefile.am, src/dv/dv.conf, src/dv/dv.conf.in,
src/exit/exit.conf, src/fs/Makefile.am, src/fs/fs.conf,
src/fs/fs.conf.in, src/mesh/Makefile.am, src/mesh/mesh.conf,
src/mesh/mesh.conf.in, src/nse/Makefile.am, src/nse/nse.conf,
src/nse/nse.conf.in, src/peerinfo/Makefile.am,
src/peerinfo/peerinfo.conf, src/peerinfo/peerinfo.conf.in,
src/statistics/Makefile.am, src/statistics/statistics.conf,
src/statistics/statistics.conf.in, src/transport/Makefile.am,
src/transport/transport.conf, src/transport/transport.conf.in,
src/util/Makefile.am, src/util/client.c, src/util/resolver.conf,
src/util/resolver.conf.in, src/vpn/Makefile.am, src/vpn/vpn.conf,
src/vpn/vpn.conf.in: change default configurations on systems
with UNIX domain sockets to NOT specify any port for TCP-based
IPC (and interpret that as no TCP-based IPC desired), as we can
and want to use UNIX domain sockets in this case by default
2012-01-12 09:26 wachs
* [r19101] src/vpn/gnunet-service-vpn.c: fix compile errors
2012-01-11 21:11 grothoff
* [r19093] src/fs/fs_api.c, src/fs/fs_api.h, src/fs/fs_publish.c:
fixing bug to ensure that we properly descend into deep
directories for the various publish start/stop/suspend/resume
event callbacks
2012-01-11 13:18 wachs
* [r19085] src/ats/ats.conf,
src/ats/gnunet-service-ats_addresses.c: mlp configuration
2012-01-11 12:41 wachs
* [r19084] src/ats/Makefile.am: adding glpk to the makefile
2012-01-10 23:18 harsha
* [r19082] src/stream/stream_protocol.h: stream P2P protocol
message specification
2012-01-10 16:06 wachs
* [r19078] src/vpn/vpn.conf: fix: wrong binary and duplicate unix
path
2012-01-10 15:54 wachs
* [r19077] src/integration-tests/confs/c_bootstrap_server.conf,
src/integration-tests/confs/c_nat_client.conf,
src/integration-tests/confs/c_no_nat_client.conf: added section
to solve vpn conflicts
2012-01-09 16:38 grothoff
* [r19069] src/include/gnunet_disk_lib.h, src/util/disk.c: LRN:
make disk iterator start return GNUNET_SYSERR if run on empty
directory
2012-01-05 21:04 grothoff
* [r19023] src/exit/Makefile.am: fix
2012-01-05 20:58 bartpolot
* [r19021] src/dht, src/dht/Makefile.am, src/dht/dht_api.c,
src/dht/test_dht_monitor.c: Added testcase for DHT monitoring.
2012-01-05 20:18 grothoff
* [r19017] src/include/gnunet_crypto_lib.h, src/util/crypto_crc.c:
fix crc16 prototypes
2012-01-04 20:00 bartpolot
* [r18989] src/dht/dht.h, src/dht/dht_api.c,
src/dht/gnunet-service-dht_clients.c,
src/dht/gnunet-service-dht_clients.h,
src/dht/gnunet-service-dht_neighbours.c,
src/include/gnunet_dht_service.h, src/include/gnunet_protocols.h:
New DHT-monitor functionality
2012-01-04 15:48 grothoff
* [r18988] doc/man/Makefile.am, doc/man/gnunet-monkey.1: move
monkey man page to monkey
2012-01-04 14:20 grothoff
* [r18982] src/dns/dnsparser.c, src/dns/gnunet-dns-monitor.c,
src/dns/gnunet-service-dns_new.c: adding missing file
2012-01-02 12:23 grothoff
* [r18937] src/dns/Makefile.am, src/dns/gnunet-helper-dns.c: DNS
helper for DNS redesign
2012-01-02 10:22 grothoff
* [r18929] src/include/gnunet_crypto_lib.h, src/util/crypto_crc.c:
adding crc16 to gnunet_crypto_lib.h
2012-01-02 09:26 grothoff
* [r18924] src/include/Makefile.am,
src/include/gnunet_helper_lib.h, src/util/Makefile.am,
src/util/helper.c: adding new GNUNET_HELPER_ API for
communication with (SUID) helper binaries via stdin/stdout using
standard GNUNET messages
2012-01-02 08:24 grothoff
* [r18923] src/include/gnunet_os_lib.h, src/util/os_priority.c:
adding GNUNET_OS_start_process_vap function
2012-01-02 03:51 grothoff
* [r18912] src/dns/gnunet-helper-hijack-dns.c: dns hijacker code
review
2012-01-01 23:39 grothoff
* [r18908] src/dns/Makefile.am, src/dns/dns_api.c,
src/include/gnunet_dns_service.h, src/vpn/Makefile.am,
src/vpn/gnunet-daemon-vpn-dns.c, src/vpn/gnunet-daemon-vpn-dns.h,
src/vpn/gnunet-daemon-vpn-helper.c, src/vpn/gnunet-daemon-vpn.c,
src/vpn/gnunet-daemon-vpn.h: first quick hack to extract an
initial DNS service API
2012-01-01 21:12 grothoff
* [r18889] src/arm/gnunet-service-arm.c, src/chat/gnunet-chat.c,
src/datastore/gnunet-service-datastore.c, src/fs/fs_api.c,
src/fs/gnunet-service-fs_cp.c,
src/include/gnunet_scheduler_lib.h, src/nse/gnunet-service-nse.c,
src/peerinfo/gnunet-service-peerinfo.c, src/util/crypto_hash.c,
src/util/scheduler.c: changing scheduler priorities to revert to
DEFAULT instead of inheriting parent-task priority unless
something else is explicitly specified
2011-12-30 22:25 grothoff
* [r18853] src/fs/Makefile.am, src/fs/fs_uri.c: LRN: normalize
keywords (decapitalize, split) using libunistring - #2052
2011-12-26 19:31 grothoff
* [r18828] src/fs/fs_misc.c, src/include/gnunet_fs_service.h,
src/util/os_network.c: adding GNUNET_FS_time_to_year function to
FS API
2011-12-25 20:45 grothoff
* [r18815] src/fs/gnunet-service-fs_cp.h,
src/fs/gnunet-service-fs_pr.c: fixing migration stop delay
calculation, largely by first calculating datastore load
correctly and then by better distinguishing between datastore
full, datastore timeout and success and finally by adding
per-peer tracking of the current block interval to adjust to
repeated undesireable behavior. See #2029.
2011-12-23 20:13 wachs
* [r18794] src/ats/Makefile.am: missing file
2011-12-22 14:15 wachs
* [r18756] src/transport/gnunet-transport.c: include plugin in
gnunet-transport output
2011-12-21 18:03 bartpolot
* [r18754] src/nse/gnunet-nse-profiler.c,
src/nse/gnunet-service-nse.c: Added statistic reading to NSE,
fixed some minor bugs
2011-12-21 16:39 wachs
* [r18751] src/vpn/gnunet-helper-vpn.c: fix compile error
2011-12-21 14:33 wachs
* [r18742] src/transport/plugin_transport_http.c: fixed assertion
in gnunet-service resolver
improved address printing for IPv6 addresses, especially if
reverse lookup is not successful
2011-12-21 12:39 wachs
* [r18735] src/transport/plugin_transport_udp.c: fixed assertion:
wrong return value
2011-12-21 09:56 grothoff
* [r18732] contrib/report.sh: add version reporting for MHD to
report.sh
2011-12-21 09:40 grothoff
* [r18730] src/arm/arm.h,
src/ats-test/test_transport_ats_multiple_peers.c, src/ats/ats.h,
src/chat/chat.h, src/core/core.h,
src/core/gnunet-service-core_kx.c, src/datastore/datastore.h,
src/dht/dht.h, src/dht/gnunet-service-dht_neighbours.c,
src/dv/dv.h, src/dv/test_transport_api_dv.c,
src/fragmentation/fragmentation.h, src/fs/fs.h,
src/fs/gnunet-service-fs.h, src/hello/hello.c,
src/hostlist/gnunet-daemon-hostlist.c, src/include/block_dns.h,
src/include/block_fs.h, src/include/gnunet_ats_service.h,
src/include/gnunet_bandwidth_lib.h, src/include/gnunet_common.h,
src/include/gnunet_crypto_lib.h, src/include/gnunet_time_lib.h,
src/mesh/mesh.h, src/mesh/mesh_protocol.h, src/nat/nat.h,
src/nse/gnunet-service-nse.c, src/nse/nse.h,
src/peerinfo/peerinfo.h, src/statistics/statistics.h,
src/testing/test_testing_large_topology.c,
src/testing/test_testing_topology.c,
src/testing/test_testing_topology_blacklist.c,
src/testing/test_testing_topology_churn.c,
src/transport/gnunet-helper-transport-wlan.c,
src/transport/gnunet-service-transport_neighbours.c,
src/transport/gnunet-service-transport_validation.c,
src/transport/gnunet-transport-wlan-sender.c,
src/transport/plugin_transport_http.h,
src/transport/plugin_transport_smtp.c,
src/transport/plugin_transport_tcp.c,
src/transport/plugin_transport_udp.c,
src/transport/plugin_transport_udp_new.c,
src/transport/plugin_transport_unix.c,
src/transport/plugin_transport_wlan.c,
src/transport/plugin_transport_wlan.h,
src/transport/test_quota_compliance.c,
src/transport/test_transport_api_reliability.c,
src/transport/test_transport_api_unreliability.c,
src/transport/test_transport_api_unreliability_constant.c,
src/transport/transport.h, src/util/crypto_ksk.c,
src/util/crypto_rsa.c, src/util/resolver.h,
src/vpn/gnunet-service-dns-p.h, src/vpn/gnunet-service-dns.c,
src/vpn/gnunet-vpn-packet.h: fixing 2012: network structure
alignment now forced to be correct even on W32 using #pragma pack
from gcc 4.x
2011-12-20 16:41 wachs
* [r18726] src/transport/gnunet-service-transport_neighbours.c: fix
for mantis 1959
compare addresses and only mark address when addresses match
2011-12-20 16:01 wachs
* [r18723] src/transport/gnunet-service-transport_clients.c: fix
for mantis #2008
2011-12-20 15:48 wachs
* [r18722] src/transport/transport_api.c: Improvement in reconnect:
first disconnect, then destroy neighbours
2011-12-20 12:58 wachs
* [r18719] src/include/gnunet_transport_plugin.h,
src/transport/plugin_transport_tcp.c: first changes for new
plugin api
2011-12-20 09:20 grothoff
* [r18714] AUTHORS, configure.ac, src/dht/test_dht_2dtorus.conf:
Adding optional compiler and linker hardening options as per
suggestion from Jacob
2011-12-19 23:24 grothoff
* [r18710] src/dht/test_dht_2dtorus.conf: do not run with full on
NSE during testing
2011-12-19 21:26 grothoff
* [r18704] src/include/gnunet_statistics_service.h,
src/statistics/statistics_api.c: implement watch_cancel function
2011-12-19 17:15 grothoff
* [r18698] src/fs/fs_api.c, src/fs/fs_api.h, src/fs/fs_search.c:
improving results seen communication to consider which exact
keywords a particular result has been seen for so far
2011-12-19 17:10 wachs
* [r18697] src/integration-tests/Makefile.am,
src/integration-tests/gnunet_testing.py.in,
src/integration-tests/test_integration_disconnect.py.in: a new
nat disconnect test
2011-12-19 16:31 grothoff
* [r18696] src/transport/gnunet-service-transport_neighbours.c:
fixing #2014
2011-12-19 15:59 grothoff
* [r18693] src/fs/gnunet-service-fs_pr.c: limit lifetime of
migrated content to at most 1 year
2011-12-19 15:52 grothoff
* [r18692] src/fs/gnunet-service-fs_cp.c,
src/fs/gnunet-service-fs_cp.h, src/fs/gnunet-service-fs_pr.c:
block data migration based on lowest discarded expiration of
content in the datastore to avoid wasting bandwidth on migrating
content that is just instantly discarded again anyway
2011-12-19 15:02 wachs
* [r18691] src/integration-tests/test_integration_clique.py.in,
src/integration-tests/test_integration_disconnect.py.in,
src/integration-tests/test_integration_restart.py.in: fixing some
timeouts
2011-12-19 14:26 wachs
* [r18690] src/ats/ats_api_scheduling.c:
2011-12-19 14:25 wachs
* [r18689] src/ats/ats_api_scheduling.c,
src/transport/gnunet-service-transport_neighbours.c: fixes for
mantis #1988
and cleanup
2011-12-19 14:10 grothoff
* [r18688] src/fs/gnunet-service-fs_cp.c,
src/fs/gnunet-service-fs_pr.c, src/fs/gnunet-service-fs_pr.h:
actually limit FS memory consumption by limiting how many
requests we track from other peers (respective GSF-option had not
been set; new code also inverts the meaning of the bit, so it
does not have to be set for peers but rather is now set for
clients to excempt them from the limitation)
2011-12-19 13:54 grothoff
* [r18686] src/datastore/datastore.h,
src/datastore/datastore_api.c,
src/datastore/perf_datastore_api.c,
src/datastore/test_datastore_api.c,
src/datastore/test_datastore_api_management.c,
src/fs/fs_namespace.c, src/fs/fs_publish.c, src/fs/fs_unindex.c,
src/fs/gnunet-service-fs_indexing.c,
src/fs/gnunet-service-fs_pr.c,
src/include/gnunet_datastore_service.h: adding min_expiration
argument to GNUNET_DATASTORE_ContinuationWithStatus callback to
communicate which content has a chance of being stored in the
medium term
2011-12-19 13:08 wachs
* [r18684] src/hostlist/test_gnunet_daemon_hostlist.c: added LRN's
patch from mantis bug 1998
2011-12-19 12:12 wachs
* [r18682] src/include/gnunet_ats_service.h,
src/transport/plugin_transport_wlan.c: additional network type
for WLAN
2011-12-19 12:08 wachs
* [r18681] src/ats/ats_api_scheduling.c: checked mantis #0002016
and added additional assertion
2011-12-19 10:59 grothoff
* [r18680] src/nat/gnunet-helper-nat-server.c: Jacob Appelbaum
reviewed gnunet-helper-nat-server and affirms that the code
'seems fine'
2011-12-19 09:32 grothoff
* [r18678] src/datastore/gnunet-service-datastore.c: fixing
calculation of Bloom filter size that was too large by 1024x
because it was not adjusted when the unit for the quota was
changed from kb to bytes
2011-12-17 18:32 grothoff
* [r18662] contrib/apparmor,
contrib/apparmor/usr.bin.gnunet-helper-nat-server: adding
apparmor profile for gnunet-helper-nat-server from Jacob
2011-12-16 22:42 grothoff
* [r18653] src/datastore/plugin_datastore_sqlite.c: implementing
get_keys API for sqlite datastore plugin (#2013)
2011-12-16 22:19 grothoff
* [r18652] src/statistics/statistics_api.c,
src/statistics/test_statistics_api_watch.c: code cleanup, also
trying to fix #2011
2011-12-16 22:13 grothoff
* [r18650] src/nat/gnunet-helper-nat-client.c: really minimizing
gnunet-helper-nat-client code running with root rights
2011-12-16 22:04 grothoff
* [r18649] src/nat/gnunet-helper-nat-server-windows.c,
src/nat/gnunet-helper-nat-server.c: really minimizing code
running with root rights
2011-12-16 21:19 grothoff
* [r18647] src/util/container_bloomfilter.c: cleaning up
bloomfilter code and disk file size tests
2011-12-16 17:15 wachs
* [r18635] src/integration-tests/confs/c_nat_client.conf,
src/integration-tests/gnunet_testing.py.in,
src/integration-tests/test_integration_clique_nat.py.in:
2011-12-16 16:27 wachs
* [r18634] src/integration-tests/gnunet_testing.py.in,
src/integration-tests/test_integration_clique_nat.py.in:
improvements and fixes
2011-12-16 16:12 wachs
* [r18633] src/integration-tests/confs/c_nat_client.conf,
src/integration-tests/gnunet_testing.py.in,
src/integration-tests/test_integration_clique_nat.py.in: fix
2011-12-16 14:49 wachs
* [r18632] src/integration-tests/Makefile.am,
src/integration-tests/confs/c_nat_client.conf,
src/integration-tests/test_integration_clique_nat.py.in: adding
nat clique test
2011-12-16 14:03 wachs
* [r18631] src/integration-tests/gnunet_testing.py.in: improved
statisc output
2011-12-16 13:43 wachs
* [r18630] src/integration-tests/test_integration_restart.py.in:
new test: connect after peer restart?
2011-12-16 13:43 wachs
* [r18629] src/integration-tests/Makefile.am,
src/integration-tests/test_integration_bootstrap_and_connect.py.in,
src/integration-tests/test_integration_clique.py.in,
src/integration-tests/test_integration_disconnect.py.in:
2011-12-16 12:25 wachs
* [r18627] src/integration-tests/gnunet_testing.py.in,
src/integration-tests/test_integration_bootstrap_and_connect.py.in,
src/integration-tests/test_integration_clique.py.in,
src/integration-tests/test_integration_disconnect.py.in: added
support for interupting a test
2011-12-16 11:19 grothoff
* [r18625] src/nat/gnunet-helper-nat-client.c,
src/nat/gnunet-helper-nat-server.c: additional stylistic changes
to gnunet-helper-nat-client anticipating next round of
suggestions from Jacob Applebaum
2011-12-16 11:16 grothoff
* [r18624] configure.ac, src/nat/gnunet-helper-nat-server.c: some
very minor stylistic changes to gnunet-helper-nat-server based on
suggestions from Jacob Applebaum
2011-12-15 17:03 wachs
* [r18620] src/integration-tests/gnunet_testing.py.in,
src/integration-tests/test_integration_bootstrap_and_connect.py.in,
src/integration-tests/test_integration_clique.py.in,
src/integration-tests/test_integration_disconnect.py.in: improved
tests
2011-12-15 15:56 wachs
* [r18617] src/integration-tests/Makefile.am,
src/integration-tests/gnunet_testing.py.in,
src/integration-tests/test_integration_bootstrap_and_connect.py.in,
src/integration-tests/test_integration_clique.py.in: improved
test framework
2011-12-15 15:20 wachs
* [r18615] src/integration-tests/gnunet_testing.py.in: added
improved check management
2011-12-15 14:56 grothoff
* [r18614] src/fs/gnunet-service-fs_cp.c,
src/fs/gnunet-service-fs_pr.c: use better heuristic to deal with
datastore put failures; log migration stop message transmissions
2011-12-15 14:55 grothoff
* [r18613] src/datastore/gnunet-service-datastore.c,
src/include/gnunet_datastore_plugin.h: adding support for
detection quota changes / missing bloomfilter files and
reconstruction/recovery code
2011-12-15 14:21 wachs
* [r18603] src/integration-tests/gnunet_testing.py.in: peer get
automatically stopped
2011-12-15 14:09 wachs
* [r18602] src/integration-tests/gnunet_testing.py.in: improved
peer management
2011-12-15 12:44 grothoff
* [r18601] src/util/container_bloomfilter.c: only try to read bf
from disk if we didn't just create the file
2011-12-15 12:41 grothoff
* [r18600] src/datastore/datastore.conf: store Bloomfilter with
rest of datastore data
2011-12-15 12:40 grothoff
* [r18599] src/include/gnunet_disk_lib.h,
src/util/container_bloomfilter.c, src/util/disk.c: extra error
checking in Bloom filter to check that the size of the file on
disk corresponds to the expected size for the given filter
2011-12-15 09:51 wachs
* [r18597] README: added python remark to hacking This line, and
those below, will be ignored
--
M README
2011-12-15 09:46 wachs
* [r18596] configure.ac: Python version required to run tests is >=
2.6
2011-12-14 13:32 wachs
* [r18590] src/include/gnunet_ats_service.h,
src/transport/gnunet-service-transport.c,
src/transport/plugin_transport_http.c,
src/transport/plugin_transport_udp.c,
src/transport/plugin_transport_unix.c: wan/lan detection in
plugins
2011-12-14 13:31 wachs
* [r18589] src/ats/ats_api_scheduling.c: adding detection for
AF_UNIX
2011-12-14 10:25 wachs
* [r18588] src/transport/plugin_transport_http.c,
src/transport/plugin_transport_http.h,
src/transport/plugin_transport_http_server.c,
src/transport/plugin_transport_tcp.c: WAN/LAN for HTTP/S
2011-12-14 08:53 wachs
* [r18587] src/include/gnunet_transport_plugin.h,
src/transport/gnunet-service-transport.c,
src/transport/gnunet-service-transport_plugins.c,
src/transport/gnunet-service-transport_plugins.h,
src/transport/plugin_transport_tcp.c: removing ats functions from
plugins, instead provide callback function
2011-12-14 08:52 wachs
* [r18586] src/ats/ats_api_scheduling.c:
2011-12-13 16:26 wachs
* [r18578] src/include/gnunet_transport_plugin.h: missing
2011-12-13 16:20 wachs
* [r18577] src/transport/gnunet-service-transport.c,
src/transport/gnunet-service-transport_plugins.c,
src/transport/plugin_transport_tcp.c: changes:
changed order of startup since ats is now required for plugins
transport provides ATS handles for plugins
network detection for tcp
2011-12-13 15:19 wachs
* [r18576] src/transport/plugin_transport_wlan.c: address type in
WLAN
2011-12-13 15:15 wachs
* [r18575] src/transport/plugin_transport_unix.c: added ATS
addresstype information to unix
2011-12-13 15:13 wachs
* [r18574] src/ats/ats_api_scheduling.c,
src/ats/gnunet-service-ats_addresses.c: fixing crash 0002007
adding network information to addresses
2011-12-13 15:02 wachs
* [r18573] src/util/os_network.c: LRN's patch argument order
2011-12-13 14:36 grothoff
* [r18572] src/fs/gnunet-service-fs.c,
src/fs/gnunet-service-fs_lc.c, src/fs/gnunet-service-fs_pr.h:
trying to fix #2000
2011-12-13 12:31 wachs
* [r18566] src/ats/Makefile.am, src/ats/ats_api_scheduling.c,
src/ats/gnunet-service-ats_addresses.c,
src/ats/gnunet-service-ats_addresses.h,
src/include/gnunet_ats_service.h: move code from service to api
fix bug
add test
2011-12-12 17:11 wachs
* [r18562] src/ats/gnunet-service-ats_addresses.c,
src/include/gnunet_ats_service.h: WAN/LAN detection
Mantis 1991
2011-12-12 13:58 wachs
* [r18560] src/ats/gnunet-service-ats_addresses.c,
src/ats/gnunet-service-ats_addresses.h: IPv4 check implemented
TODO: IPv6
2011-12-12 12:52 wachs
* [r18559] src/ats/gnunet-service-ats_addresses.c,
src/ats/gnunet-service-ats_addresses.h: WAN/LAN detection
2011-12-12 12:05 wachs
* [r18558] src/Makefile.am,
src/integration-tests/test_integration_clique.py.in: including
integration tests in checks
2011-12-11 15:39 grothoff
* [r18556] src/transport, src/transport/Makefile.am,
src/transport/gnunet-helper-transport-wlan-dummy.c,
src/transport/gnunet-helper-transport-wlan.c,
src/transport/gnunet-transport-wlan-helper-dummy.c,
src/transport/gnunet-transport-wlan-helper.c,
src/transport/gnunet-transport-wlan-sender.c,
src/transport/plugin_transport_wlan.c: renaming WLAN helper
process to gnunet-helper-transport-wlan in order to satisfy
naming conventions
2011-12-10 13:49 harsha
* [r18543] src/include/gnunet_stream_lib.h: syntax
2011-12-09 17:31 wachs
* [r18541] src/integration-tests/Makefile.am,
src/integration-tests/confs/c_no_nat_client_2.conf,
src/integration-tests/hostkeys/0002-hostkey,
src/integration-tests/hostkeys/0003-hostkey,
src/integration-tests/hostkeys/0004-hostkey,
src/integration-tests/hostkeys/0005-hostkey,
src/integration-tests/hostkeys/0006-hostkey,
src/integration-tests/hostkeys/0007-hostkey,
src/integration-tests/hostkeys/0008-hostkey,
src/integration-tests/hostkeys/0009-hostkey,
src/integration-tests/test_integration_clique.py.in,
src/integration-tests/test_integration_disconnect.py.in: clique
2011-12-09 16:18 wachs
* [r18534] src/integration-tests/Makefile.am,
src/integration-tests/test_integration_bootstrap_and_connect.py.in,
src/integration-tests/test_integration_disconnect.py.in:
disconnect test
2011-12-09 16:09 grothoff
* [r18533] src/statistics/statistics_api.c: fix crash
2011-12-09 15:57 harsha
* [r18532] src/include/gnunet_stream_lib.h: fixed missing doc
comment
2011-12-09 15:55 harsha
* [r18531] src/include/gnunet_stream_lib.h, src/stream,
src/stream/README: added API definitions for stream library
2011-12-09 15:19 wachs
* [r18530]
src/integration-tests/test_integration_bootstrap_and_connect.py.in:
added core sessions
2011-12-09 14:48 wachs
* [r18528] src/integration-tests/confs/c_bootstrap_server.conf,
src/integration-tests/confs/c_no_nat_client.conf,
src/integration-tests/test_integration_bootstrap_and_connect.py.in:
first test ready
2011-12-09 12:41 wachs
* [r18526]
src/integration-tests/test_integration_bootstrap_and_connect.py.in:
test now checks if boths transports are connecting
2011-12-09 10:40 wachs
* [r18525] src/statistics/gnunet-statistics.c: added quiet mode
just printing the value
2011-12-08 16:16 wachs
* [r18517] src/integration-tests/Makefile.am,
src/integration-tests/confs,
src/integration-tests/confs/c_bootstrap_server.conf,
src/integration-tests/confs/c_nat_client.conf,
src/integration-tests/confs/c_no_nat_client.conf,
src/integration-tests/test_integration_bootstrap_and_connect.py.in,
src/integration-tests/test_integration_clique.py.in: step by step
2011-12-08 15:45 grothoff
* [r18515] doc/man/gnunet-arm.1, po/POTFILES.in,
src/arm/Makefile.am, src/arm/arm.h, src/arm/arm_api.c,
src/arm/do_start_process.c, src/arm/gnunet-arm.c,
src/arm/gnunet-service-arm.c, src/arm/mockup-service.c,
src/arm/test_arm_api.c, src/arm/test_exponential_backoff.c,
src/arm/test_gnunet_arm.sh,
src/arm/test_gnunet_service_manager.c,
src/include/gnunet_arm_service.h, src/include/gnunet_protocols.h:
major rewrite of ARM service and a bit of the ARM IPC to take
advantage of the simplifications possible now that we no longer
intercept traffic; the new code in particular is better at
communicating what exactly ARM was doing in response to requests.
A major change is that gnunet-arm -i/-k now only impacts if a
service is running by-default, on-demand starting is no longer
impacted, option -t from gnunet-arm was removed
2011-12-08 15:32 wachs
* [r18512] src/testing/gnunet-testing.c: modified to create cfg
with default without template
2011-12-08 13:43 wachs
* [r18511] src/testing/gnunet-testing.c: added option to specify
hostkey file
2011-12-08 13:16 wachs
* [r18510] configure.ac, src/integration-tests,
src/integration-tests/Makefile.am,
src/integration-tests/test_integration_clique.py.in: basics for
integration tests
2011-12-08 13:04 wachs
* [r18509] src/testing/Makefile.am: space after backslash
2011-12-08 12:42 grothoff
* [r18506] src/nse/gnunet-service-nse.c: add statistic to track
estimated network diameter
2011-12-08 12:38 grothoff
* [r18505] src/nse/gnunet-service-nse.c: fixing issue with sending
back size estimate messages to peers that already have good
estimate information
2011-12-07 17:02 wachs
* [r18497] src/testing/gnunet-testing.c: added hostkey generation
functionality
2011-12-07 15:34 wachs
* [r18496] src/include/gnunet_testing_lib.h,
src/testing/gnunet-testing.c, src/testing/testing_group.c:
2011-12-07 15:33 bartpolot
* [r18495] src/nse/nse_api.c: Made sure that NSE never returns
invalid standard deviation values
2011-12-07 13:23 wachs
* [r18492] src/testing/gnunet-testing.c:
2011-12-07 12:42 wachs
* [r18491] src/include/gnunet_getopt_lib.h,
src/util/getopt_helpers.c: fixed docu
2011-12-07 12:28 wachs
* [r18490] src/testing/Makefile.am, src/testing/gnunet-testing.c:
testing cmd line tool
2011-12-06 20:20 grothoff
* [r18484] src/arm/gnunet-service-arm_interceptor.c: removing ARM
interceptor connection forwarding post-accept code, now using
lsocks everywhere
2011-12-06 20:07 grothoff
* [r18479] src/include/gnunet_common.h,
src/include/gnunet_network_lib.h,
src/include/gnunet_server_lib.h, src/transport/Makefile.am,
src/transport/gnunet-transport-wlan-helper.c,
src/util/pseudonym.c: eliminating last dependency on util code
from wlan helper by inlining
2011-12-06 19:06 grothoff
* [r18476] src/util/common_logging.c: LRN: correct behaviour when
logfile does not exist
2011-12-06 18:06 grothoff
* [r18475] src/arm/gnunet-service-arm_interceptor.c: fix compile
2011-12-06 18:06 grothoff
* [r18474] src/util/common_logging.c: LRN: Ensure that GTK can then
do the internal call write(2, message, strlen
(message)); successfully by default.
2011-12-06 17:58 grothoff
* [r18473] src/arm/do_start_process.c,
src/arm/gnunet-service-arm.c, src/arm/gnunet-service-arm.h,
src/arm/gnunet-service-arm_interceptor.c,
src/include/gnunet_network_lib.h, src/include/gnunet_os_lib.h,
src/include/platform.h, src/util/network.c,
src/util/os_priority.c, src/util/service.c: Implement passing
sockets in IPC on W32 (#1975)
2011-12-06 14:55 wachs
* [r18463] src/include/gnunet_common.h,
src/transport/gnunet-transport-wlan-helper.c,
src/transport/gnunet_wlan_sender.c,
src/transport/plugin_transport_wlan.c: adding GNUnet endian
operations
2011-12-06 14:19 wachs
* [r18461] src/transport/gnunet_wlan_sender.c: timestamp not
supported on fedora core 8
2011-12-06 14:13 grothoff
* [r18460] src/datastore/gnunet-service-datastore.c,
src/util/common_allocation.c, src/util/container_bloomfilter.c:
Fixing #1976 by allowing allocations between INT_MAX and SIZE_MAX
and at the same time limiting BF size for datastore to 2 GB. Also
fixing infinite loop when creating BFs of sizes between 2-4 GB
2011-12-06 13:54 grothoff
* [r18456] src/arm/gnunet-service-arm_interceptor.c,
src/include/gnunet_common.h, src/util/common_endian.c: use
uint64_t instead of long long for GNUNET_ntohll/GNUNET_htonll
2011-12-06 13:35 bartpolot
* [r18451] src/include/platform.h: Removed legacy code
2011-12-06 12:49 grothoff
* [r18445] src/include/platform.h, src/include/winproc.h,
src/nat/gnunet-helper-nat-client-windows.c,
src/nat/gnunet-helper-nat-server-windows.c: LRN: Fixing Mantis
#1974: On W32 winsock2.h defines FD_SETSIZE (if it was not
defined before inclusion of the header) to 64, which means that
it's not possible to select on more than 64 sockets at once. This
might work during the tests, but in the wild people might want to
have more than 60 connections, at least in the transport service.
The patch attached should increase the limit to 1024.
2011-12-06 09:44 grothoff
* [r18432] README: fix
2011-12-06 01:56 grothoff
* [r18431] contrib/Makefile.am: distfix
2011-12-01 09:17 grothoff
* [r18412] src/datastore/perf_plugin_datastore.c,
src/util/winproc.c: LRN: Adding vectored exception handling for
W32 (#1965)
Whenever an exception occurs, and the process is not being
debugged, it will run a debugger specified by GNUNET_DEBUGGER
environment variable, and wait for it to attach.
The net effect is the same as using JIT debugging (AeDebug), but
without the stack being broken by SEH (because VEH has a priority
over SEH), which allows for fuller backtraces for any exception,
not just for GNUNET_abort() calls.
2011-11-30 15:21 grothoff
* [r18410] Makefile.am, configure.ac, po/de.po, po/es.po, po/sv.po,
po/vi.po, po/zh_CN.po: releasing GNUnet 0.9.0
|