-
Notifications
You must be signed in to change notification settings - Fork 419
/
ChangeLog
3554 lines (1896 loc) · 64.8 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
Date: 2013-01-20
Update URL. Github downloads are no more.
Date: 2013-01-19
Remove cpp wrappers
Date: 2013-01-19
Drop PROTOTYPES.cpp
Date: 2013-01-06
Fix markdown link
Date: 2013-01-06
Add a link to the home page
Date: 2013-01-06
Mention dnscrypt-wrapper
Date: 2013-01-06
Next version will be 1.2.1, I suppose.
Date: 2013-01-06
Use size_t for TXT total size, remove extra parenthesis.
Merge: 0b31df8 3dc4690
Date: 2013-01-06
Support merging txt strings into one.
Some dns managers split long binary data into more than one strings
(e.g. linode.com)
Merge remote-tracking branch 'cofyc/merge_txts'
By Yecheng Fu
Date: 2013-01-06
Update OSX client link.
Date: 2013-01-02
levent: configure.in files have been deprecated for a while. Rename.
Date: 2013-01-02
A global COPYING file is enough
Date: 2013-01-01
2013
Date: 2012-12-22
levent: Avoid double-close on getsockname error in evutil_ersatz_socketpair
Avoid leaking fds on evconnlistener with no callback set
Date: 2012-12-07
levent - Fix compilation with WIN32_HAVE_CONDITION_VARIABLES enabled.
Date: 2012-11-22
improve: support merging txt strings into one
some dns manager split long binary data into more than one strings (e.g. linode.com)
Date: 2012-11-19
Update libevent to 2.0.21-stable-dev.
Date: 2012-11-15
Sync libevent2 - fix OpenSSL renegotiation test with old OpenSSL version.
Merge: c128bd9 ce9b890
Date: 2012-11-13
Merge remote-tracking branch 'origin/master'
* origin/master:
Added profile/repo_name so the packages/gentoo folder can be used as a portage overlay
Updated Gentoo ebuild for v1.2.0
Merge: 20e9dd1 57e0296
Date: 2012-11-13
Merge pull request #38 from Strayer/gentoo_ebuild_v1.2.0
Bumped Gentoo ebuild to v1.2.0
Date: 2012-11-13
Added profile/repo_name so the packages/gentoo folder can be used as a portage overlay
Date: 2012-11-13
Updated Gentoo ebuild for v1.2.0
- updated conf and init script according to parameter changes in v1.1.0
Date: 2012-11-03
Add a build script for 32-bit versions of OSX binaries.
Date: 2012-11-03
levent updates, so that 64-bit versions for Windows can be built.
Merge: 23eaeeb 9f7c132
Date: 2012-10-28
Merge remote-tracking branch 'marguerite/master'
* marguerite/master:
fix a hang-on-boot bug in systemd. update opensuse license
Date: 2012-10-28
libevent2 updates.
Date: 2012-10-24
fix a hang-on-boot bug in systemd. update opensuse license
Date: 2012-10-21
Add Marguerite Su to the THANKS file.
Date: 2012-10-21
Take the systemd service definition off the root directory.
Date: 2012-10-21
Minor tweaks to the OpenSuSE description.
Merge: f0b3120 857f0cc
Date: 2012-10-21
Merge pull request #36 from marguerite/master
add opensuse package, and systemd service for dnscrypt
Date: 2012-10-22
add opensuse pacages, systemd servce
Date: 2012-10-19
The OSX GUI is mainly a collection of shell scripts, nowadays.
Date: 2012-10-17
Insame => insane
Date: 2012-10-13
Remove OpenBSD port, since it is now in the official ports tree.
Date: 2012-10-12
Change the blurb to something closer to the awesome summary by sthen@
Date: 2012-10-11
Update the Homebrew formula to 1.2.0
Date: 2012-10-11
Update the OpenBSD package to 1.2.0
Date: 2012-10-11
Mention that DCP_SYNC_FILTER_RESULT_DIRECT is only for a pre-filter.
Date: 2012-10-11
Update ChangeLog
Date: 2012-10-10
Set the RA flag in direct responses.
Date: 2012-10-10
Set the QR bit when sending an empty AAAA reply.
Date: 2012-10-10
Log short UDP replies
Date: 2012-10-10
Group Windows changes together.
Date: 2012-10-10
Whitespace.
Date: 2012-10-10
Update link
Date: 2012-10-10
1.2.0
Date: 2012-10-10
Document that gcc 3.4.6 with a Mips target produces broken code with -Os
Date: 2012-10-10
Add missing return statement in the ldns-blocking example.
Date: 2012-10-10
Update NEWS/ChangeLog
Date: 2012-10-10
The plugin API has changed, 1.1.1 sounds weird, so let's go 1.2.0.
Date: 2012-10-10
Add a new plugin to return an empty response to AAAA queries.
Date: 2012-10-09
Update ChangeLog
Date: 2012-10-09
Document the new DIRECT return code for pre-filters.
Date: 2012-10-09
Well, not all plugins have been removed.
Date: 2012-10-09
Document the direct mode.
Date: 2012-10-09
Implement direct mode for TCP.
Date: 2012-10-09
Start sending direct replies.
Date: 2012-10-09
Prepare proxy code for DCP_SYNC_FILTER_RESULT_DIRECT
Date: 2012-10-09
Bump API version minor.
Date: 2012-10-09
Prepare for DCP_SYNC_FILTER_RESULT_DIRECT.
Date: 2012-10-09
Indent
Date: 2012-10-09
Include Windows quirks in NaCl test, too.
Date: 2012-10-09
Spaces, blah.
Merge: de7bb89 854e2c9
Date: 2012-10-09
Merge branch 'master' of https://github.com/jedisct1/dnscrypt-proxy
* 'master' of https://github.com/jedisct1/dnscrypt-proxy:
Detect things like C:/x/y and C:\x\y as absolute paths to Windows plugins.
Date: 2012-10-09
Resurect the deviceid plugin, as OpenDNS folks really need it.
Date: 2012-10-09
Detect things like C:/x/y and C:\x\y as absolute paths to Windows plugins.
Date: 2012-10-09
Revert "ldns requires socklen_t but Win32 doesn't have it."
This has been fixed in ldns 1.6.14.
Date: 2012-10-08
Update URL
Date: 2012-10-08
Missing "the".
Date: 2012-10-08
Check ldns_resolver_new_frm_file() return code.
Date: 2012-10-08
If a new release ever sees the light, it will be 1.1.1.
Date: 2012-10-08
Update ChangeLog
Date: 2012-10-08
Update NEWS
Date: 2012-10-08
Update URL.
Date: 2012-10-08
Off-topic, but document how to compile ldns on Windows.
Date: 2012-10-08
ldns requires socklen_t but Win32 doesn't have it.
So, define it on Win32.
Date: 2012-10-06
Remove OpenDNS-related plugins.
Date: 2012-10-06
Remove some sample plugins.
Date: 2012-10-05
Remove UDP_REQUEST_NO_RETRIES. Always support retries.
Date: 2012-10-03
Enforce a 2 second timeout.
Date: 2012-10-03
forward-after-nxdomain: allow 1 extra byte for the response if needed.
Date: 2012-10-03
Initial forward-after-nxdomain plugin implementation.
Date: 2012-10-02
Update ChangeLog
Date: 2012-09-29
Thanks, RotBlitz
Date: 2012-09-29
People are still running dnscrypt on old CPUs. Compile for Pentium 2 on Windows.
Date: 2012-09-29
Trim down optimization flags for Windows
Date: 2012-09-26
ChangeLog updates
Date: 2012-09-25
Stick to PACKAGE_STRING for the version, it's easier to parse.
Date: 2012-09-25
Remove the FreeBSD package.
Date: 2012-09-25
Unfuck pkgsrc packages on Dragonfly BSD.
Date: 2012-09-25
Update the NetBSD / Dragonfly BSD port. Plugin-less for now.
Date: 2012-09-25
Factorize dependencies
Date: 2012-09-25
PERMIT_PACKAGES => Yes
Date: 2012-09-25
Major update to the OpenBSD package. Build plugins as a subpackage.
Date: 2012-09-25
Improve the Homebrew formula after adamv@ review
Date: 2012-09-25
Enable plugins in the Linux packages
Date: 2012-09-25
Update fpm port
Date: 2012-09-25
Switch from tar-pax to tar-ustar because OpenBSD's tar(1) is confused with
POSIX archives.
Date: 2012-09-25
Update the OpenBSD port to 1.1.0
Date: 2012-09-25
Lion -> Mountain Lion
Date: 2012-09-24
Allow reading an OpenDNS device id from an environment variable named
OPENDNS_DEVICE_ID as an alternative to giving it as an argument to the
opendns_deviceid plugin. This information shouldn't be visible in the
process name.
Date: 2012-09-24
Update the Homebrew package.
Date: 2012-09-24
Use tar-pax because some plugins files names are > 99 chars long.
Date: 2012-09-24
Don't use brackets in doxygen doc except for headers.
Date: 2012-09-24
ChangeLog
Date: 2012-09-24
Enable support for plugins in Windows builds.
Date: 2012-09-24
Require plugins to mention DCPLUGIN_MAIN(__FILE__);
Date: 2012-09-24
Update the ChangeLog, again.
Date: 2012-09-24
Android and iPhone build scripts have been moved.
Date: 2012-09-24
Update ChangeLog
Date: 2012-09-24
Mention the example plugins.
Date: 2012-09-24
Can you seriously expect Windows to implement putc_unlocked()? LOL.
Date: 2012-09-24
Ensure that assertions are always turned on.
Date: 2012-09-24
Add missing return statement.
Date: 2012-09-24
Update the ChangeLog
Date: 2012-09-24
Spaces vs tabs. Fu fu fu fu fuuuuuuuu
Date: 2012-09-24
libevent: arc4random_buf() doesn't return a value. Fix ev_arc4random_buf().
Date: 2012-09-23
logging plugin: display a dot for a query for dot (duh!).
Date: 2012-09-23
Zap the final dot in a name before doing pattern matching on it.
Date: 2012-09-23
Don't use ldns wildcard matching, match * everywhere instead.
People want to filter things like *xxx*, so let them do that.
Date: 2012-09-23
Init the locale.
Date: 2012-09-22
example-logging: bump the minimal required length up.
Date: 2012-09-22
Update the ChangeLog
Date: 2012-09-22
Add a new plugin that logs queries.
Date: 2012-09-22
Add WARNING for plugins.
Date: 2012-09-22
Don't include the full path to a plugin in examples.
Date: 2012-09-22
Use strcasecmp() in order to caselessly compare IPv6 addresses.
Date: 2012-09-22
Rewrite the ldns-blocking plugin, so that it can block any name and IP address.
This plugin can be very useful in order to block ads and buggy replies.
Date: 2012-09-19
Move build scripts to a dist-build directory, add one for osx.
Date: 2012-09-19
Update ChangeLog
Date: 2012-09-19
Plugins can now be loaded from a default directory ($pkglibdir).
In addition, a new configure flag, --enable-plugins-root, disallows loading
plugins outside this directory.
Date: 2012-09-18
README-WINDOWS: ...\dnscrypt-proxy\Parameters is confusing, as "parameters"
can be understood as a variable. So, add an example.
Explain how plugins should be specified by the way.
Date: 2012-09-18
Indentatino :)
Date: 2012-09-16
A new configure flag, --disable-pie, can disable position-independent executables.
A bad idea, but required by some OS.
Date: 2012-09-13
Merge 1.1.0 changelog, since there will probably be no more RC.
Date: 2012-09-13
Import example-ldns-blocking.c
Date: 2012-09-13
Update ChangeLog
Date: 2012-09-13
-fdata-sections -ffunction-sections doesn't seem very useful on Windows
Date: 2012-09-13
Having new lines in flags is a bad idea.
Date: 2012-09-13
Import a script to build the proxy on Win32
Date: 2012-09-13
Silent MingW.
Date: 2012-09-13
Update ChangeLog
Date: 2012-09-13
Introduce --enable-relaxed-plugins-permissions
Date: 2012-09-13
If the proxy is run as root, refuse to load a plugin not owned by root.
Yes, it's still totally racy, and not super useful, but better than nothing.
Date: 2012-09-13
Xcode 4.5-GM is just called Xcode
Date: 2012-09-13
Update ChangeLog
Date: 2012-09-13
Use Xcode 4.5
Date: 2012-09-13
Pick up the new name for the blocking plugin
Date: 2012-09-13
Rename example-ldns example-ldns-blocking
Date: 2012-09-13
1.1.0-RC1 also fixed lookups of multiple TXT records, and thus
handling of multiple certificates.
Date: 2012-09-13
Finally, the plugin API has been kinda documented.
Date: 2012-09-13
Add a link to the API documentation.
Date: 2012-09-13
Quote
Date: 2012-09-13
More doc on plugins
Date: 2012-09-13
Return REFUSED instead of NXDOMAIN when we get a blacklisted IP in a record of a
response. It makes more sense, and OpenDNS can return the same IP for different
reasons, not only NXDOMAIN.
Date: 2012-09-12
Start documenting plugins
Date: 2012-09-12
Untab README-WINDOWS
Date: 2012-09-12
Update NEWS
Date: 2012-09-12
Update ChangeLog
Merge: f568bce beac641
Date: 2012-09-12
Merge branch 'master' of https://github.com/jedisct1/dnscrypt-proxy
* 'master' of https://github.com/jedisct1/dnscrypt-proxy:
In sendto_with_retry(), free()ing the timer beforehand is a good idea but turning that in a different use-after-free is not.
Initialize dcps at the right place. I'm just totally unable to write a single line of code when I am at the office.
The sendto_retry timer should be free()d before the callback, or else we end up with a big bad use after free and an even bigger and badder double free.
Initialize dcps before using it, duh. It used to make virtually any plugin crash before it even had a chance to load on Linux, and on platforms it used to work on, it worked by accident. Reported by @transitorykris, confirmed by Valgrind.
Date: 2012-09-12
Update ChangeLog
Date: 2012-09-12
Sync libevent, fix two memory leaks in evdns.
Date: 2012-09-12
In sendto_with_retry(), free()ing the timer beforehand is a good idea
but turning that in a different use-after-free is not.
Date: 2012-09-12
Initialize dcps at the right place. I'm just totally unable to write a
single line of code when I am at the office.
Date: 2012-09-12
The sendto_retry timer should be free()d before the callback, or else we
end up with a big bad use after free and an even bigger and badder
double free.
Date: 2012-09-12
Initialize dcps before using it, duh.
It used to make virtually any plugin crash before it even had a chance
to load on Linux, and on platforms it used to work on, it worked by
accident.
Reported by @transitorykris, confirmed by Valgrind.
Date: 2012-09-11
The set-client-ip plugin also allows applying network settings when using IPv6
Date: 2012-09-11
set-client-ip: randomize the fodder
Date: 2012-09-11
More data set-client-ip needs.
Date: 2012-09-11
The set-client-ip plugin needs more data in order to properly apply the
network settings.
Date: 2012-09-10
Improve documentation for the set-client-ip plugin.
Date: 2012-09-10
Update ChangeLog.
Date: 2012-09-10
More descriptions
Date: 2012-09-10
More descriptions
Date: 2012-09-10
Document example-ldns-opendns-deviceid
Date: 2012-09-10
Add a simple example plugin to change the client IP when talking to OpenDNS resolvers.
Date: 2012-09-09
Thank you, Black Roland!
Date: 2012-09-09
Move the GUIs section up
Date: 2012-09-09
Reorder the Android build script so that TARGET_TOOLCHAIN_VERSION is defined
before it is used :)
Date: 2012-09-09
Add Android
Date: 2012-09-09
That was --resolver-port
Date: 2012-09-09
Mention that --local-port and --remote-port are gone for good.
Date: 2012-09-09
Don't lie about why TCP is slow.
Date: 2012-09-06
Dash
Date: 2012-09-06
Update ChangeLog. It's 1.1.0-rc1 for now.
Date: 2012-09-06
Bump revision to 1.1.0rc1
Date: 2012-09-06
Don't cast uint32_t values to print them. That's retarded.
Date: 2012-09-06
Grammar
Date: 2012-09-06
Update ChangeLog/NEWS.
Date: 2012-09-06
Rename the .plist file.
Date: 2012-09-06
Use plugin_long_description() in the null plugin, too.
Date: 2012-09-06
Add dcplugin_long_description()
Date: 2012-09-06
Add basic probes for filters.
Date: 2012-09-06
Retabify, try to match the initial code style.
Date: 2012-09-06
Update ChangeLog
Date: 2012-09-06
Check the RR length before any parsing, even if it's redundant.
Date: 2012-09-05
evdns: store more than 1 TXT record.
Date: 2012-09-05
Don't assume that only one TXT record will be received.
Date: 2012-09-04
Add libltdl to SUBDIRS, if plugins are enabled.
Date: 2012-09-03
80 cols
Date: 2012-09-03
Windows nits
Date: 2012-09-03
Add Plugins to the list of Windows registry keys, before I forget.
Date: 2012-09-03
Parse the "Plugins" key if there is one in the Windows registry.
Date: 2012-09-03
Windows: implement windows_service_registry_read_multi_sz()
Date: 2012-09-03
Return NXDOMAIN for an IP that actually needs it.
Date: 2012-09-03
Display the actual error when a plugin can't be loaded.
Date: 2012-09-03
Remove example-ldns-opendns-bypass
Date: 2012-09-03
Display the plugin description if we have one.
Date: 2012-09-03
Check that a plugin either belongs to root, or would be writeable by whoever
runs the current process (or at least, by whoever can write to the fs).
It's not very useful, it's racy, but it's better than nothing.
Date: 2012-09-03
Wipe the client nonce after uncurving a reply.
Useful for debugging.
Date: 2012-09-03
Add tcp post-filters.
Date: 2012-09-02
No more dns_packet_len, stay consistent between udp_ & tcp_request.c
Date: 2012-09-02
Regen man pages.
Date: 2012-09-02
Add prefilters for TCP.
Date: 2012-09-02
Don't use max_packet_size. When using TCP, the packet size is not the data
size, so, use the 'packet' terminology to actually mean a packet size, and
something different to mean a DNS packet.
No change to the compiled code, but it will help to make things more
consistent between udp_request.c and tcp_request.c.
Date: 2012-09-02
Don't use dns_packet*, use dns_(query|reply)* in udp_request.c just like in
tcp_request.c
Date: 2012-09-02
The default resolver is 208.67.220.220, not .222.222
Date: 2012-09-02
The OSX GUI probably works on 32-bit systems now, and the OpenDNS GUI for
Windows is apparently labeled "OpenDNSCrypt".
Date: 2012-09-02
Upcase
Date: 2012-08-29
Add an optional function for describing a plugin.
Date: 2012-08-29
Rename sample plugins
Date: 2012-08-27
Rename example-ldns-2 to example-ldns-opendns-deviceid and add the ability
to provide a device id on the command line.
Date: 2012-08-27
Add two new OpenDNS-specific example plugins
Date: 2012-08-26
Regen dnscrypt-proxy man page.
Date: 2012-08-26
Update ChangeLog
Date: 2012-08-24
Shrink the default max payload size to 1252 bytes.
Date: 2012-08-24
Update libevent to 2.0.20
Date: 2012-08-20
Include the port number in default IPs.
Restore support for specifying IP addresses without ports.
Date: 2012-08-21
Update email.
Date: 2012-08-17
Don't use backtrace on Bitrig
Date: 2012-08-16
-P and -t are gone for good.