forked from ginhom/dnscrypt-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
11021 lines (5844 loc) · 233 KB
/
ChangeLog
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
* Sat May 6 19:38:35 2017 +0200
Cache plugin: fix the way items are moved from recent to frequent lists
In addition to making the cache work as expected, this prevents
`CacheEntry` items from becoming orphans.
* Fri May 5 09:59:10 2017 +0200
Sign
* Fri May 5 09:54:22 2017 +0200
Adding Babylon Network resolvers (#647)
* Sat Apr 29 20:13:13 2017 +0200
Add support for adding the vendor name to the version string
* Thu Apr 27 11:36:40 2017 +0200
Remove dead resolvers, sign
* Thu Apr 27 11:36:32 2017 +0200
Reduce the margin even more in resolvers-check
* Thu Apr 27 11:12:40 2017 +0200
Revert "Hopefully temporary: adguard-dns-ns2, d0wn-random-ns1 down"
* Thu Apr 27 11:12:15 2017 +0200
sign
* Thu Apr 27 11:11:08 2017 +0200
Replacing port 443 with 5353 due to incompatibility with HTTPS services (#639)
* Wed Apr 19 10:03:03 2017 +0200
Revert "Temporarily remove dnscrypt.org-fr"
* Tue Apr 18 23:32:11 2017 +0200
Temporarily remove dnscrypt.org-fr
* Tue Apr 18 22:43:19 2017 +0200
Hopefully temporary: adguard-dns-ns2, d0wn-random-ns1 down
* Sun Apr 9 21:43:20 2017 +0200
sign
* Mon Apr 10 02:40:04 2017 +0700
d0wn servers update (#625)
Update some d0wn servers.
Up : ns1.au , ns1.hk
IPv4 only (IPv6 unreachable), no port 443 : ns1.fr
No port 443 : ns2.nl
Add IPv6, IPv4 already listed : ns1.ro
Add all the rest with no special treatment : ns1.cr, ns1.dk, ns3.hk, ns2.is, ns1.mx, ns4.nl, ns2.se, ns2.sg, ns4.us, ns1.za
All added servers tested via IPv4. For IPv6, only tested for open port via online web check.
* Sun Apr 9 21:20:15 2017 +0200
Add a couple domains to the whitelist
* Wed Apr 5 21:44:59 2017 -0700
Remove down d0wn servers
* Thu Apr 6 14:39:50 2017 +1000
Add second d0wn AU server (#622)
* Thu Mar 30 14:42:53 2017 +0200
Revert "Add the DNS Spy public resolver (#619)"
* Thu Mar 30 14:40:29 2017 +0200
Add the DNS Spy public resolver (#619)
* Tue Mar 28 10:53:28 2017 +0200
Doc: mention that timestamps are encoded in big-endian
* Mon Mar 27 22:01:32 2017 +0200
Invert
* Mon Mar 27 22:00:55 2017 +0200
Try the flat style
* Mon Mar 27 21:58:17 2017 +0200
+ donate button
* Sat Mar 25 12:46:53 2017 +0100
Sign
* Sat Mar 25 04:46:03 2017 -0700
adding nxd.ist resolver (#618)
* adding nxd.ist
* changing description of nxd.ist
* Mon Mar 20 22:28:37 2017 +0100
cs-ch2 is unresponsive
* Mon Mar 20 22:27:49 2017 +0100
contrib/resolvers-check.sh: allow a lower margin for the certificate
* Mon Mar 6 22:53:44 2017 +0100
Sign
* Mon Mar 6 22:52:43 2017 +0100
Update dnscrypt-resolvers.csv (#612)
Previously mistakenly added the wrong IPv6 address. Added the correct one for dnscrypt.nl-ns0-ipv6
* Mon Mar 6 20:04:58 2017 +0100
Sign
* Mon Mar 6 20:04:45 2017 +0100
Amsterdan -> Amsterdam
* Mon Mar 6 20:04:07 2017 +0100
Temporarily remove dnscrypt.nl-ns0-ipv6
* Mon Mar 6 20:01:35 2017 +0100
Update dnscrypt-resolvers.csv (#611)
Added dnscrypt.nl
* Mon Mar 6 08:38:28 2017 +0100
Use unified headers on Android
* Sat Mar 4 19:37:35 2017 +0100
Keep variables sorted by size
* Sat Mar 4 13:36:04 2017 -0500
Reset the reachability of nameservers if all are unreachable (#609)
If all nameservers have been marked unreachable, they will not be queried
again until dnscrypt-proxy is restarted. This fix allows for queries to be
retried without restarting dnscrypt-proxy.
Fixes jedisct1/dnscrypt-proxy#608
Signed-off-by: Mitchel Haan <[email protected]>
* Wed Feb 22 13:45:54 2017 +0100
Doc error: client-pk is the client' public key.
Spotted by @willnix
Fixes #603
* Sat Feb 18 18:54:52 2017 +0100
- d0wn-lt-ns1
* Sat Feb 18 10:45:16 2017 +0100
Whitelist some TLDs typically used on local networks
* Thu Feb 16 09:58:12 2017 +0100
whitelist << "j.mp"
* Tue Feb 14 08:33:53 2017 +0100
Whitelist a-msedge.net and l-msedge.net
Fixes #596
* Mon Feb 13 19:42:45 2017 +0100
soltysiak-ipv6 is back
* Sun Feb 12 22:42:48 2017 +0100
Compile for macOS >= 10.10
* Sat Feb 11 20:50:20 2017 +0100
cs-es is temporarily down
* Thu Feb 9 22:25:39 2017 +0100
Avoid clock_gettime() usage on MacOS
The function is present in Sierra, but not on previous OS versions,
although the linker doesn't complain when `-mmacosx-version-min=`
mentions that we want to support OSX < 10.12.
So, just pretend it doesn't exist, and remember to remove that
hack the day everyone is running OSX >= 10.12.
Via an issue from @Thireus
* Thu Feb 9 17:35:57 2017 +0100
Looks like this is being renamed
* Thu Feb 9 13:56:11 2017 +0100
Sign
* Thu Feb 9 16:25:51 2017 +0330
Remove iFreeNet (#591)
* Thu Feb 9 12:58:48 2017 +0100
domains -> zones
* Tue Feb 7 14:25:26 2017 +0100
libevent test/dns: run async resolving after sync one (to avoid timeouts)
* Tue Feb 7 12:33:55 2017 +0100
Normalize the dnscrypt-resolvers.csv format
Also remove the namecoin tag from servers that don't support it any more.
* Tue Feb 7 12:03:43 2017 +0100
Remove unresponsive resolvers
* Sun Jan 29 00:46:04 2017 +0100
Travis is too slow :(
* Sat Jan 28 16:38:43 2017 +0100
ldns-blocking: fix another corner case with suffix matching
Ruleset:
```
*.example.com
ru.example.com
```
A query for `xru.example.com` would find `ru.example.com` as the longest
suffix. The expression didn't match since this is neither an exact match
nor a match that stops at a label.
However, this was ignoring the fact that there a different, shorter rule
could match.
This is pretty annoying, as keeping our promise to log the longest match
means that we need at least yet another lookup in that specific case.
Alternatively, the fpst lookup function could be specialized to stop at
labels, but that would defeat the point of this example plugin. So,
perform an extra lookup after striping the first (last, once the name is
reversed) label.
* Fri Jan 27 00:37:21 2017 +0100
Sort, re-add resolvers that were temporarily down
* Fri Jan 27 00:26:14 2017 +0100
* Sun Jan 22 16:54:03 2017 +0100
Use the PID file to kill the service on Android
* Sun Jan 22 16:51:41 2017 +0100
Update 99dnscrypt (#580)
Added pidfile
* Sun Jan 22 13:00:28 2017 +0100
Android 99dnscrypt: do not sleep before trying the next resolver
* Sun Jan 22 12:55:11 2017 +0100
Android 99dnscrypt: reduce the margin to 700
* Sun Jan 22 12:48:59 2017 +0100
Android's 99dnscrypt: use a random resolver
* Sat Jan 21 11:52:49 2017 +0100
* Sat Jan 21 11:51:05 2017 +0100
Quotes
* Sat Jan 21 11:48:28 2017 +0100
Update ChangeLog
* Sat Jan 21 11:10:33 2017 +0100
Ignore *.exe
* Sat Jan 21 11:08:14 2017 +0100
Update permissions on dnscrypt-update-resolvers.sh
* Sat Jan 21 10:15:48 2017 +0100
Remove cd.. leftover
* Sat Jan 21 10:10:37 2017 +0100
Reduce the number of CI builds
* Sat Jan 21 09:18:11 2017 +0100
Check that everything builds with minimal libsodium builds
* Sat Jan 21 09:13:09 2017 +0100
Update NEWS/ChangeLog
* Sat Jan 21 09:09:07 2017 +0100
"make clean" is not super interesting to log
* Sat Jan 21 08:55:34 2017 +0100
Revert "New resolver in Tokyo, Japan: LifeTyper"
* Sat Jan 21 08:55:16 2017 +0100
Trusty is old
* Sat Jan 21 08:49:23 2017 +0100
Travis doesn't support IPv6 yet
* Sat Jan 21 08:48:56 2017 +0100
Travis: attempt install/uninstall + ./contrib/resolvers-check.sh
* Sat Jan 21 08:45:58 2017 +0100
resolvers-check.sh: IPV4_ONLY can be set to probe only IPv4 resolvers
* Sat Jan 21 08:12:53 2017 +0100
Move dnscrypt-update-resolvers.sh.in and resolvers-check.sh to contrib/
* Sat Jan 21 08:11:41 2017 +0100
Update .gitignore
* Sat Jan 21 08:05:08 2017 +0100
Use printunl/archlinux for the Windows builds
* Sat Jan 21 02:59:46 2017 +0100
New resolver in Tokyo, Japan: LifeTyper
* Sat Jan 21 02:54:08 2017 +0100
Use a random resolver in the tests
* Sat Jan 21 02:48:59 2017 +0100
Indent
* Sat Jan 21 02:45:03 2017 +0100
win32-win64-xcompile.sh: always compile from the script's directory
* Sat Jan 21 01:52:27 2017 +0100
In the Windows dist, remove the sample conf, add WINDOWS doc
* Sat Jan 21 00:00:55 2017 +0100
Update NEWS
* Sat Jan 21 00:00:10 2017 +0100
Update ChangeLog
* Fri Jan 20 23:58:24 2017 +0100
Fix libsodium warning
* Fri Jan 20 23:45:33 2017 +0100
CLEANFILES += dnscrypt-update-resolvers.sh
* Fri Jan 20 23:43:58 2017 +0100
Do not install the systemd files
Package maintainers will do a way better job with these
* Fri Jan 20 23:40:21 2017 +0100
Generate org.dnscrypt.osx.DNSCryptProxy.plist from a template
* Fri Jan 20 23:29:26 2017 +0100
Reduce the difference between Android and iOS builds
* Fri Jan 20 23:13:18 2017 +0100
Always include stdlib.h in evutil_rand.c
* Fri Jan 20 23:09:26 2017 +0100
Make the builds a little bit more silent
* Fri Jan 20 22:57:16 2017 +0100
Split
* Fri Jan 20 22:40:54 2017 +0100
Regen the man page
* Fri Jan 20 22:39:50 2017 +0100
Update ChangeLog
* Fri Jan 20 22:37:01 2017 +0100
Support "random" as a resolver name to pick a random resolver
* Fri Jan 20 21:32:03 2017 +0100
Install examples in @docdir@, create systemd files from templates
* Fri Jan 20 21:31:42 2017 +0100
Pay attention to @datarootdir@ in dnscrypt-update-resolvers.sh.in
* Fri Jan 20 13:58:37 2017 +0100
Print when the configuration file did not change
* Fri Jan 20 13:30:42 2017 +0100
1.9.4
* Fri Jan 20 13:30:57 2017 +0100
soltysiak down :( cs-lt up, cs-ua down.
* Fri Jan 20 13:08:02 2017 +0100
Overwrite conf if the installed one is the vanilla example
* Fri Jan 20 12:52:21 2017 +0100
Fix inverted logic in the installation of the example config file
* Wed Jan 18 10:52:53 2017 +0100
cs-lt and d0wn-us-ns3 are temporarily unresponsive
* Wed Jan 18 08:59:36 2017 +0100
Update ChangeLog
* Wed Jan 18 08:46:40 2017 +0100
On Linux, warn when we are running low on entropy
* Wed Jan 18 08:18:57 2017 +0100
Print even more details in test mode
* Wed Jan 18 08:15:48 2017 +0100
Improve the test mode output and print the validity period
* Wed Jan 18 03:15:58 2017 +0100
Travis: increase the margin for the certificate check
* Wed Jan 18 03:15:46 2017 +0100
Recommend installing pkg-config and libsystemd-dev for systemd
* Wed Jan 18 01:59:11 2017 +0100
Mention that NO_REUSEPORT is not required any more
* Tue Jan 17 22:48:18 2017 +0100
build-base should be enough to build the package
* Tue Jan 17 22:40:38 2017 +0100
d0wn-us-ns3 and soltysiak-ipv6 are temporarily down
* Tue Jan 17 22:37:45 2017 +0100
1.9.3
* Tue Jan 17 22:34:53 2017 +0100
Update ChangeLog
* Tue Jan 17 21:50:02 2017 +0100
Travis: actually try to install the proxy
* Tue Jan 17 21:41:29 2017 +0100
Fix the Plugin directive in config files; add a CI test for it as well
* Tue Jan 17 20:00:22 2017 +0100
Ignore ldconfig errors
* Tue Jan 17 19:52:50 2017 +0100
Restore -e, ignore make install errors
* Tue Jan 17 15:33:24 2017 +0100
Switch Travis builds to multiarch/alpine
* Tue Jan 17 15:30:38 2017 +0100
Update NEWS
* Tue Jan 17 15:27:01 2017 +0100
apt is not present on Travis
* Tue Jan 17 15:22:04 2017 +0100
Travis: try to compile for multiple Linux architectures
* Tue Jan 17 12:34:37 2017 +0100
If binding a TCP socket with SO_REUSEPORT fails, retry without it
This is required at least on alpine/armhf
* Tue Jan 17 12:09:45 2017 +0100
Check for linux/filter.h presence -- Allows compilation on musl libc
* Tue Jan 17 01:37:11 2017 +0100
Mention that the Include path does not require quotes
* Tue Jan 17 01:18:10 2017 +0100
--with-ttl was renamed --min-ttl
* Tue Jan 17 00:38:42 2017 +0100
Fix casing
* Mon Jan 16 23:52:20 2017 +0100
Do not print the plugins root directory on Windows
* Mon Jan 16 20:01:34 2017 +0100
It's called "tracker.debian.org", but it's not a tracker
* Mon Jan 16 14:10:30 2017 +0100
Do not install dnscrypt-proxy.conf.example if no dnscrypt-proxy.conf file exists
* Sun Jan 15 18:56:07 2017 +0100
Update ChangeLog
* Sun Jan 15 18:55:28 2017 +0100
Do not include <sys/socket.h> on WIN32
* Sun Jan 15 18:23:42 2017 +0100
--version now reports useful information about how the server was compiled
* Sun Jan 15 18:11:08 2017 +0100
Update ChangeLog
* Sun Jan 15 17:51:10 2017 +0100
Remove the fpm package
fpm is awesome, but apparently, nobody's using this script.
* Sun Jan 15 17:42:07 2017 +0100
Prepare for version 1.9.2
* Sun Jan 15 17:19:09 2017 +0100
Fix KX when using xchacha20poly1305 and non-ephemeral keys
* Sun Jan 15 16:27:38 2017 +0100
Warn when an obsolete libsodium version is found
* Sun Jan 15 15:45:02 2017 +0100
Log the system error message when the TCP listener cannot be created
* Sun Jan 15 15:12:19 2017 +0100
Update simpleconf
* Sun Jan 15 10:03:17 2017 +0100
Indent
* Sun Jan 15 09:58:32 2017 +0100
Move the !Include definition down
* Sun Jan 15 01:56:38 2017 +0100
Document that recursive configuration files are now supported
* Sun Jan 15 01:48:58 2017 +0100
Comment marktron's list in the sample domains-blacklist configuration
* Sun Jan 15 01:40:56 2017 +0100
Shorten
* Sun Jan 15 01:37:13 2017 +0100
simpleconf: support a handler for "special" keywords
* Sun Jan 15 00:11:39 2017 +0100
Preliminary support for recursive configuration files
* Sat Jan 14 23:59:25 2017 +0100
Improve the domains-blacklist.conf header
* Sat Jan 14 23:55:22 2017 +0100
simpleconf: detach the code responsible for loading a config file
* Fri Jan 13 22:13:54 2017 +0100
Improve the ProviderName example
* Fri Jan 13 02:54:07 2017 +0100
Nits
* Thu Jan 12 20:38:35 2017 +0100
Remove Quidsup Notrack by default -- too many FPs such as pusher
* Thu Jan 12 20:31:15 2017 +0100
Do not block elasticbeanstalk.com
* Wed Jan 11 10:04:25 2017 -0800
Add Dan Pollock's list
* Wed Jan 11 00:48:36 2017 -0800
Use bounce buffers for crypto_box_detached_afternm emulation
Required for ancient libsodium versions (stock Debian Jessie, Raspbian)
* Tue Jan 10 13:26:52 2017 -0800
Include \0 in the key equality test
* Tue Jan 10 10:48:50 2017 -0800
Iterate over the \0 terminator when inserting a new key
* Tue Jan 10 00:28:34 2017 -0800
Mention how to run the python script
* Sat Jan 7 15:24:35 2017 +0100
Unfortunately, blocking *.spotify.com breaks the app :/
* Sat Jan 7 10:53:44 2017 +0100
Nits
* Sat Jan 7 10:37:56 2017 +0100
IgnoreTimeStamps weakens security -- do not enable blindly
* Sat Jan 7 16:33:28 2017 +0700
Add Windows service properties IgnoreTimestamps and LogLevel
Add "IgnoreTimestamps (--ignore-timestamps)" and "LogLevel (--loglevel)" for windows service parameter registry.
So windows service parameter registry had the same option with the main program option.
* Sat Jan 7 16:32:45 2017 +0700
Update README-WINDOWS.markdown (#548)
* Update README-WINDOWS.markdown
Fixed.
Documentation for `windows_service.c` change.
* Update README-WINDOWS.markdown
* Sat Jan 7 10:30:14 2017 +0100
Redirect log messages whose level is < LOG_NOTICE to stderr
* Fri Jan 6 18:14:18 2017 +0100
Attach a BPF filter to the client-side UDP socket
* Fri Jan 6 16:02:10 2017 +0100
Typo
* Fri Jan 6 15:18:09 2017 +0100
Do not enable SO_REUSEPORT is NO_REUSEPORT is defined
`SO_REUSEPORT` is apparently buggy on older linux-sunxi kernels
* Thu Jan 5 23:46:37 2017 +0100
Avoid the redefinition of the FPST type
This fixes compilation on Debian 6
* Tue Jan 3 15:29:04 2017 +0100
Blocking tagcommander.com causes popular mobile apps to freeze :(
* Tue Jan 3 15:17:40 2017 +0100
Whitelist some entries
* Tue Jan 3 15:11:17 2017 +0100
Print the number of entries ignored because of the whitelist
* Tue Jan 3 15:08:13 2017 +0100
Support a whitelist
* Tue Jan 3 14:09:23 2017 +0100
Add TXT records
* Tue Jan 3 07:21:08 2017 +0100
Don't assume that ## or #@ is an inline comment
* Mon Jan 2 22:39:03 2017 +0100
Read the domains-blacklist.conf file from the command line if supplied
* Mon Jan 2 22:10:10 2017 +0100
Refine the inline-comments macro
* Mon Jan 2 21:56:17 2017 +0100
Add a few optional categories to domains-blacklist.conf
* Mon Jan 2 21:35:02 2017 +0100
Add more spam/fraud/ads sources
* Mon Jan 2 21:23:27 2017 +0100
Remove inline comments from blacklist entries
* Mon Jan 2 13:41:00 2017 +0100
Keep daemonize uncommented
* Mon Jan 2 13:40:17 2017 +0100
Mention that Daemonize is not for Windows
* Mon Jan 2 12:35:30 2017 +0100
Re-remove resolvers that are still down:
- cs-uswest - Failed
- d0wn-dk-ns1 - Failed
- d0wn-dk-ns1 - Failed
- d0wn-fr-ns1 - Failed
- d0wn-fr-ns1-ipv6 - Failed
- d0wn-nl-ns2 - Failed
* Mon Jan 2 06:29:50 2017 -0500
Update dnscrypt-resolvers.csv (#540)
Removed original listing of Cryptostorm's DNS resolvers and added Cryptostorm's updated DNS resolvers from their github
https://github.com/cryptostorm/cstorm_deepDNS/blob/master/dnscrypt-resolvers.csv
Updated D0wn's list of DNS resolvers
- According to https://dns.d0wn.biz/ "All servers are supporting DNSSEC." Updated d0wn's DNS resolvers to yes under DNSSEC column.
- Added Austria, Bulgaria, Canada, Czech Republic, Denmark, France, Germany, Greece, Hong Kong, Lithuania, Moldova, Netherlands, Romania, Singapore, South Korea, Switzerland, Tanzania, United States of America
- Rearranged Germany, Moldova, Spain, Sweden to coincide better Alphabetically
Added Tumabox IPv6 DNS Resolver
* Sun Jan 1 17:49:10 2017 +0100
Remove some d0wn resolver that are temporarily down
* Sun Jan 1 17:31:55 2017 +0100
Update ChangeLog
* Sun Jan 1 17:30:16 2017 +0100
generate-domains-blacklist.py: remove overlapping names
* Sun Jan 1 15:23:42 2017 +0100
Include netinet/ip.h
* Sun Jan 1 15:17:53 2017 +0100
Set the DSCP to AF32
* Sun Jan 1 08:00:55 2017 +0100
Fix stupid pasto in util_ntohl()
* Sun Jan 1 07:26:53 2017 +0100
Block eth0.me
* Sun Jan 1 00:22:01 2017 +0100
Regen man pages
* Sat Dec 31 23:35:10 2016 +0100
Fix string comparison after a previous iteration
* Sat Dec 31 23:08:35 2016 +0100
Keep the frame pointers to get nicer backtraces on Windows
* Sat Dec 31 23:07:04 2016 +0100
Actually run pkg-config and autoreconf
* Sat Dec 31 22:27:05 2016 +0100
A short update to the NEWS file
* Sat Dec 31 22:24:02 2016 +0100
Update ChangeLog
* Sat Dec 31 22:23:42 2016 +0100
Add the ability to specify the minimum TTL a record has to be cached
* Sat Dec 31 21:58:44 2016 +0100
Remove an useless assertion
* Sat Dec 31 20:48:11 2016 +0100
inline
* Sat Dec 31 20:45:18 2016 +0100
Reduce the value to 32 bits
* Sat Dec 31 20:37:28 2016 +0100
The max length of a key is 32767 bytes
* Sat Dec 31 20:29:33 2016 +0100
2017
* Sat Dec 31 20:29:29 2016 +0100
C++ compat
* Sat Dec 31 20:20:35 2016 +0100
Resume string comparison where we left after the previous iteration
* Sat Dec 31 18:34:52 2016 +0100
Version bump
* Sat Dec 31 18:32:40 2016 +0100
Rewrite the prefix matching algorithm for the blocking plugin
* Thu Dec 29 21:06:38 2016 +0100
Add quotes around paths to blacklists in the example file
Unnecessary for paths that don't include spaces, but paths with
spaces are common on Windows, so make the example more universal.
* Thu Dec 29 16:12:28 2016 +0100
Dragonfly BSD doesn't have any problems with -fstack-protector-strong
* Thu Dec 29 13:55:32 2016 +0100
`--install-service-with-config-file` -> `--install-with-config-file`
* Thu Dec 29 13:52:43 2016 +0100
Do not print references to man pages on Windows
* Thu Dec 29 11:21:29 2016 +0100
Properly include the contrib dir in the dist tarball
* Thu Dec 29 10:28:52 2016 +0100
Document what plugins can do
* Thu Dec 29 09:15:19 2016 +0100
Update ChangeLog
* Thu Dec 29 09:14:49 2016 +0100
Do not use --high-entropy-va on i686
* Thu Dec 29 09:03:22 2016 +0100
Typo
* Thu Dec 29 08:42:29 2016 +0100
Update ChangeLog
* Thu Dec 29 08:41:30 2016 +0100
Temporarily remove cs-uswest
Since a new release is being tagged, this resolver cannot be included
in the default list.
* Thu Dec 29 08:32:43 2016 +0100
Update ChangeLog
* Thu Dec 29 08:32:35 2016 +0100
+ TCP for hostip
* Thu Dec 29 08:31:04 2016 +0100