-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
4071 lines (2775 loc) · 105 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
2020-07-12 Kaz Nishimura <[email protected]>
* po/en.po, po/ja.po, po/xllmnrd.pot: Update the translations.
[6447acc4a6f1]
* azure-pipelines.yml, configure.ac: Change the package version to
4.0.
[0477a114dfd7]
* xllmnrd/responder.cpp: Remove log output when there is no interface
address.
[1b4605e96255]
* libxllmnrd/interface.cpp, xllmnrd/responder.cpp: Set the default
interface name.
[dbbb359df897]
* libxllmnrd/interface.h: Use 'size_t' from <unistd.h>.
[f6b31ecce82b]
* ChangeLog: Update the change log.
[0f7d609469d8]
2020-07-11 Kaz Nishimura <[email protected]>
* xllmnrd/xllmnrd.cpp: Make the signal handler have "C" linkage.
[14e8bcb27e12]
* xllmnrd/responder.cpp, xllmnrd/xllmnrd.cpp: Remove '#define's for
'_GNU_SOURCE'.
[0ef30c104959]
* NEWS: Update for version 4.0.
[8065f498826d]
* xllmnrd/responder.cpp: Use 'PF_INET6' to open a UDP socket.
[c2bd86d1e894]
* libxllmnrd/rtnetlink.cpp: Use 'PF_NETLINK' to open a socket.
[49e04cc0de7f]
* .gitignore, .hgignore: Update the ignore list.
[5a00a25c91f1]
* README.md: Modify the introduction text.
[0a3221f82951]
* README.md: Update the introduction.
[1a88383aa90f]
* xllmnrd/Makefile.am: Use 'top_builddir' for the library paths.
[835f9bae540b]
* libxllmnrd/Makefile.am, libxllmnrd/llmnr.c, xllmnrd/Makefile.am,
xllmnrd/llmnr.c: Move 'llmnr.c'.
[439924cdf1e2]
* libxllmnrd/Makefile.am, libxllmnrd/llmnr.h, xllmnrd/Makefile.am,
xllmnrd/llmnr.h: Move 'llmnr.h'.
[e2edbef80d97]
2020-07-10 Kaz Nishimura <[email protected]>
* libxllmnrd/interface.cpp: Edit log messages.
[44ed7d0b3909]
* xllmnrd/responder.cpp: Rewrite 'interface_enabled' and
'interface_disabled'.
[6f4078b8658f]
* xllmnrd/responder.cpp: Rewrite 'matching_host_name'.
[4aad41aac752]
* xllmnrd/responder.cpp: Rewrite 'respond_for_name'.
[de0de29dc097]
* xllmnrd/responder.cpp: Rewrite 'process_udp6'.
[af40c2592f73]
* xllmnrd/responder.cpp: Rewrite 'process_udp6'.
[f291dc2bd186]
* xllmnrd/responder.cpp: Change local variable initializations.
[7714a03a277c]
* xllmnrd/responder.cpp: Replace nested switch statements with one if.
[6db760086b99]
* ChangeLog: Update the change log.
[de423961251f]
* po/en.po, po/ja.po, po/xllmnrd.pot: Update translations.
[482656b1ca3e]
* Merge back release/4.
[6fe6001288c0]
* .hgtags: Added tag release/4-alpha.2 for changeset 349aacd81547.
[88b0e36cb222]
* azure-pipelines.yml, configure.ac: Change the package version to
4-alpha.3.
[8aea94f91664]
* po/en.po, po/ja.po, po/xllmnrd.pot: Update the translations.
[349aacd81547] <release>
* po/en.po, po/ja.po, po/xllmnrd.pot: Update the translations.
[588b4af895d2]
* Merge master into release/4.
[05f555606fce] <release>
* xllmnrd/responder.cpp: Initialize arrays to zeros.
[20cfe11c47de]
* azure-pipelines.yml: Remove feature branches from build triggers.
[d78ac8d2ff69]
* xllmnrd/llmnr.c, xllmnrd/llmnr.h: Minor edit.
[cf941a968283]
* xllmnrd/llmnr.c, xllmnrd/llmnr.h: Update the file header comments.
[494e0fd32bba]
* xllmnrd/responder.cpp: Use the added templated overload.
[938af57373cf]
* xllmnrd/responder.cpp: Add a templated overload to
'log_with_sender'.
[ec4d38fd3c8f]
* xllmnrd/responder.cpp: Add test for the C flag to
'handle_udp6_query'.
[6388ac169c47]
* xllmnrd/llmnr_packet.h: Rewrite 'llmnr_is_valid_query' without an if
statement.
[5fb026c0435f]
* xllmnrd/llmnr_packet.h, xllmnrd/responder.cpp: Rename
'llmnr_query_is_valid' to 'llmnr_is_valid_query'.
[1df31e499383]
* xllmnrd/xllmnrd.cpp: Add function 'init' to 'responder_builder'.
[831880b53b96]
* xllmnrd/xllmnrd.cpp: Change the timing to call 'openlog'.
[1bab697a644d]
* xllmnrd/xllmnrd.cpp: Call 'make_pid_file' in 'build'.
[8dc4ff327ae1]
* xllmnrd/xllmnrd.cpp: Add a try block to 'main'.
[c78a38795256]
* xllmnrd/xllmnrd.cpp: Change parameter types of 'parse_options' and
rename variables.
[c1549280d993]
* xllmnrd/xllmnrd.cpp: Rename 'program_options' to
'responder_builder'.
[d8a687130020]
* xllmnrd/xllmnrd.cpp: Add function 'build' to 'program_options'.
[f425abb9569d]
2020-07-09 Kaz Nishimura <[email protected]>
* xllmnrd/xllmnrd.cpp: Modify a line break.
[fb428965aec2]
* xllmnrd/xllmnrd.cpp: Print the message on unknown options to
'stderr'.
[5932713193c9]
* xllmnrd/xllmnrd.cpp: Modify the argument of 'main'.
[91fbb3e655b5]
* xllmnrd/xllmnrd.cpp: Use an atomic operation in the signal handler.
[848d8ef1c6ef]
* po/en.po, po/ja.po, po/xllmnrd.pot: Update translations.
[adbc996c7821]
* xllmnrd/xllmnrd.cpp: Remove code to set the locale to the default.
[5d55c67b286f]
* xllmnrd/xllmnrd.cpp: Use a 'using' declaration for each symbol.
[e4fc333a19f2]
* xllmnrd/xllmnrd.cpp: Modify arguments of 'main'.
[eb314f6054f3]
* xllmnrd/xllmnrd.cpp: Remove unused code to set the host name.
[e25f2f1c5904]
* libxllmnrd/rtnetlink.h: Edit code style.
[3c1c05ad793a]
* xllmnrd/xllmnrd.cpp: Call 'bindtextdomain' only if 'LOCALEDIR' is
defined.
[5be82e5e666a]
* xllmnrd/xllmnrd.cpp: Pass 'nullptr' to 'openlog' instead of
computing the command name.
[88f357bba746]
* libxllmnrd/rtnetlink.cpp: Merge hotfix/3.
[5d650ca2fbfb]
* .hgtags: Added tag release/3.1 for changeset a4a11ec00505.
[07adca402534]
* libxllmnrd/rtnetlink.cpp: Enable notification on RTNETLINK.
[5f5419c440f5] <release>
* libxllmnrd/rtnetlink.cpp: Enable notification on RTNETLINK.
[9288422bde0c]
* libxllmnrd/rtnetlink.cpp: Back out changeset 3902964ad49f.
[e1217039aace]
* test/test_rtnetlink.cpp: Remove parameter names.
[07cf00aeddd8]
* libxllmnrd/rtnetlink.cpp: Set flags interested when joining groups.
[3902964ad49f]
* libxllmnrd/rtnetlink.h: Remove member function 'running'.
[4920e0d7c2c0]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h,
test/test_rtnetlink.cpp, xllmnrd/responder.cpp, xllmnrd/responder.h:
Replace 'added' and 'removed' in symbols with 'enabled' and
'disabled'.
[21c044e6bd2e]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Add member
'source' to 'interface_event'.
[7ff13fc054e7]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h,
test/test_rtnetlink.cpp, xllmnrd/responder.cpp: Remove
'address_family' from 'interface_event'.
[f180fa5c0771]
* libxllmnrd/interface.cpp: Remove code to fire events on add/remove
of addresses.
[44cbca4b8024]
* test/test_rtnetlink.cpp: Update test cases for new events.
[2e6a3641e2dd]
* xllmnrd/responder.cpp: Join/leave multicast groups on enable/disable
of devices.
[035ba3892dfe]
* libxllmnrd/interface.cpp: Fires events on enable/disable.
[d39477078786]
* libxllmnrd/interface.cpp: Output debug logs when a device is
enabled/disabled.
[8bfe4daa29eb]
* libxllmnrd/rtnetlink.cpp: Enable or disable interfaces according
their link flags.
[2b9d756be473]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Add new functions
'enable_interface' and 'disable_interface'.
[f961ab9817ed]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Implement state
transitions in the refresh task.
[4d0d9571451d]
* libxllmnrd/rtnetlink.cpp: Rename local variables.
[0037bb27608c]
* libxllmnrd/rtnetlink.h: Make message handling functions private-
access.
[b9d8fd319fc1]
* libxllmnrd/rtnetlink.cpp: Add code to 'handle_ifinfo'.
[13bba99ddc79]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Add new function
'handle_ifinfo'.
[082a24a923bc]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Add new function
'request_ifinfos'.
[52b4221d1baf]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Add new function
'request_ifaddrs' to 'rtnetlink_interface_manager'.
[5a3b7ba4bc23]
* xllmnrd/responder.cpp: Fix includes.
[1bb5209c2c34]
* xllmnrd/responder.h: Add member initialization.
[9de5af4cacbd]
* xllmnrd/responder.h: Remove unnecessary 'struct' keywords.
[8de052974e7f]
* libxllmnrd/posix.h: Remove unnecessary 'struct' keywords.
[64ff62621223]
* po/ja.po: Update Japanese translations.
[33bd8e6466b2]
* libxllmnrd/socket_utility.h: Make parameters const-qualified.
[054c09e2988e]
* libxllmnrd/socket_utility.h: Update comments.
[52ee20ebc78b]
* libxllmnrd/posix.h: Add comments.
[9dbf716aec58]
* libxllmnrd/posix.cpp, libxllmnrd/posix.h: Update the file header
comments.
[db959b50fcb8]
* xllmnrd/responder.cpp: Correct 'using's.
[5280c07315fd]
* xllmnrd/responder.cpp: Add support for IPv4 addresses.
[4622e54afca5]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Put the host name as got
by 'gethostname' to the answer.
[324cd5dc1f9d]
* libxllmnrd/rtnetlink.cpp: Simplify expressions in
'handle_ifaddrmsg'.
[393c0722b765]
* libxllmnrd/rtnetlink.cpp: Rename local variables.
[906aef40bad7]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Remove unnecessary
'struct' keywords.
[ebcbe9d3e128]
* libxllmnrd/rtnetlink.cpp: Reduce the use of 'std::' prefixes.
[b4d36226b0b9]
* libxllmnrd/interface.cpp: Add 'using' declarations to reduce the use
of 'std::'.
[541e29bad064]
2020-07-08 Kaz Nishimura <[email protected]>
* po/en.po: Update comments.
[6d492a6bf986]
* po/LINGUAS, po/en.po: Add English translations.
[c87bcde0d1f3]
* po/ja.po, po/xllmnrd.pot: Update the localization file.
[ef0f51e74bf5]
* xllmnrd/xllmnrd.cpp: Rename and rewrite 'parse_arguments'.
[e981f6b54f4a]
* po/ja.po, po/xllmnrd.pot: Update the localization files.
[504fb6413aba]
* xllmnrd/xllmnrd.cpp: Rename 'show_version'.
[71a79f7499dc]
* xllmnrd/xllmnrd.cpp: Rename 'show_help'.
[22e017667d66]
* po/ja.po, po/xllmnrd.pot: Update the localization files.
[e64ab6e6d638]
* xllmnrd/xllmnrd.cpp: Change the usage test construction.
[8bdac3737682]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Delete obsolete
responder functions.
[a2eb46366922]
* xllmnrd/responder.cpp: Refresh the interface manager synchronously.
[5df3acc67fe7]
* libxllmnrd/interface.h: Edit comments.
[f3746d8c4098]
* libxllmnrd/ascii.h: Add comments.
[c04129c97233]
* libxllmnrd/ascii.h, xllmnrd/responder.cpp: Remove the second '_'
characters from the 'ascii.h' function names.
[c38d4151dd2b]
* libxllmnrd/ascii.h: Update the file header comments.
[a3d50afba75e]
* Merge back release/4.
[2ce0395d7e49]
* .hgtags: Added tag release/4-alpha.1 for changeset a2284063ce45.
[204381791bbd]
* xllmnrd/responder.cpp: Use the new overloads to construct a response
packet.
[681d3179c042]
* xllmnrd/llmnr_packet.h: Add C++ overloads.
[560f27aefa2d]
* po/ja.po, po/xllmnrd.pot: Update the localization files.
[7e494bde56f2]
* azure-pipelines.yml, configure.ac: Change the package version to
4-alpha.2.
[bdd0e9717ca0]
* Merge master into release/4.
[a2284063ce45] <release>
* bitbucket-pipelines.yml: Remove unused files.
[d48c9d57efd6]
* po/ja.po, po/xllmnrd.pot: Update the localization files.
[6a4e9d92b130]
* azure-pipelines.yml, configure.ac: Change the package version to
4-alpha.1.
[8d2a7f02af23]
* xllmnrd/llmnr_packet.h, xllmnrd/responder.cpp: Rename the
'LLMNR_HEADER_*' constants.
[1a486c2d561c]
* xllmnrd/llmnr_packet.h: Use static const for protocol constants.
[5089cac51c5d]
* xllmnrd/llmnr_packet.h: Update the file header comments.
[91c5a3530693]
* xllmnrd/responder.cpp: Use the typed overload of 'sendto'.
[f7361396c0d5]
* libxllmnrd/socket_utility.h: Add new overload for 'sendto'.
[279024a5d03b]
* libxllmnrd/rtnetlink.h: Make '_worker_mutex' mutable.
[c75aeae24bd1]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Use 'atomic<bool>'
for the running flag.
[f7563743a275]
* libxllmnrd/rtnetlink.h: Add '' to 'open_rtnetlink'.
[2870221621a1]
* libxllmnrd/rtnetlink.cpp: Remove an unused include.
[53da84343733]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Update the file
header comments.
[faaba0f2bc55]
* libxllmnrd/rtnetlink.cpp: Fix error reporting.
[fdf17a1412a0]
* libxllmnrd/interface.h: Add templated overloads to
'add_interface_address' and 'remove_interface_address'.
[00f13ec44beb]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Remove unnecessary
'struct' keywords.
[51d454386a5f]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Update the file
header comments.
[3188127eea25]
* xllmnrd/xllmnrd.cpp: Use the responder class.
[c2b3a31b987f]
* xllmnrd/responder.cpp: Fix the answer encoding code.
[651b3ee19888]
* xllmnrd/responder.cpp: Fix error reporting.
[0c73e28e9543]
* xllmnrd/responder.cpp: Implement the mulitcast join/leave code.
[4c342fc7f2c7]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add the default
constructor to 'responder'.
[91a4916486ab]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Use an atomic
operation to change the interface listener.
[a3302df96e66]
* xllmnrd/responder.h: Add comments.
[dd1995fbd360]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Make class 'responder' a
listener of interface events.
[b96d1d0109d7]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h,
test/test_rtnetlink.cpp, xllmnrd/responder.cpp: Change event
handling to an event listener scheme.
[d059e630d531]
* xllmnrd/responder.cpp: Fix arguments for a 'syslog' call.
[713956704f8d]
2020-07-07 Kaz Nishimura <[email protected]>
* xllmnrd/responder.h: Make 'open_udp6' static.
[b029640501dd]
* xllmnrd/responder.cpp: Add a 'using'.
[bb028c519f59]
* xllmnrd/responder.cpp: Replace function 'log' with
'log_with_sender'.
[52fe696e6387]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Rename
'open_llmnr_udp6'.
[a58f45ab48f8]
* xllmnrd/responder.cpp: Remove keyword 'struct'.
[4cc04d8cb33d]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add new function
'respond_for_name' to 'responder'.
[1f7c90b7acf6]
* Merge master into feature/reponder-class.
[388e603b678b]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add new function
'matches_host_name'.
[233e613e602f]
* xllmnrd/responder.cpp: Rename 'log_in6_sender'.
[2e0bee3257ac]
* xllmnrd/responder.cpp: Add a priority parameter to 'log_in6_sender'.
[190504d97b9d]
* xllmnrd/responder.cpp: Reduce include directives.
[9f0819831286]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Update the file header
comments.
[1ec7e9aaea26]
* libxllmnrd/rtnetlink.cpp: Use the new overload.
[b492879b85b4]
* libxllmnrd/posix.h: Add an overload template for 'bind'.
[31fe6fce4d04]
* xllmnrd/responder.cpp: Add code to 'handle_udp6_query'.
[c9565ac085d4]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Change parameter types
of 'recv_udp6'.
[b1541510e3dd]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add new function
'handle_udp6_query' to 'responder'.
[fe1bbc5a2200]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add function 'recv_udp6'
to 'responder'.
[018cf71068c1]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add a default parameter
to the constructor of 'reponder'.
[76bc961c28dd]
* xllmnrd/responder.cpp: Add code to 'process_udp6'.
[04d1827b8138]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add new function
'terminate' to 'responder'.
[9c3792632bdd]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add new function
'process_udp6' to 'responder'.
[f834e452a32a]
* xllmnrd/responder.cpp: Use the utility overloads from
'socket_utility.h'.
[f41fbfcab611]
* xllmnrd/responder.cpp: Define function 'run' of 'responder'.
[0e3074179491]
* xllmnrd/responder.cpp: Use the utility overload of 'bind'.
[6142cfc05366]
* xllmnrd/responder.cpp: Remove a workaround for 'IPV6_DONTFRAG' on
Linux.
[83310bdf0894]
* xllmnrd/responder.cpp: Move the overload for 'setsockopt' to
'socket_utility.h'.
[4b71ec884974]
* libxllmnrd/Makefile.am, libxllmnrd/socket_utility.h: Add new header
file 'socket_utility.h'.
[07cdad602fe0]
* libxllmnrd/Makefile.am, libxllmnrd/socket_utility.h: Add new header
file 'socket_utility.h'.
[5db62c8b3ef3]
* xllmnrd/responder.cpp: Add a utility function for 'setsockopt'.
[43c7b97743c6]
* xllmnrd/responder.cpp, xllmnrd/responder.h: Add code to class
'responder'.
[7e4cf18081c5]
2020-07-06 Kaz Nishimura <[email protected]>
* xllmnrd/responder.h: Edit comments.
[0338c0b1a130]
* xllmnrd/responder.h: Rename data members.
[d37520ca486e]
* Merge master into feature/responder-class.
[d1efd0fedf35]
* xllmnrd/responder.cpp: User 'refresh' instead of 'start'.
[45843ad66a54]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h,
test/test_rtnetlink.cpp: Remove the public function 'start' from
'rtnetlink_interface_manager'.
[f3e11f8ec637]
* xllmnrd/responder.h: Add new class 'responder'.
[39a83731c1c5]
* xllmnrd/responder.cpp: Correct initialization of the interface
manager.
[a465c64808bd]
* xllmnrd/xllmnrd.cpp: Output version information as a log message.
[8b0f5b90ee74]
2020-07-02 Kaz Nishimura <[email protected]>
* README.md: Add a section for the sample init script.
[5070ebc72361]
* libxllmnrd/Makefile.am: Split file lists into multilines.
[54b136e123e8]
* libxllmnrd/Makefile.am: Merge feature/remove-ifaddr.
[c637419ce0d7]
2020-06-30 Kaz Nishimura <[email protected]>
* libxllmnrd/Makefile.am: Define macro '_LIBXLLMNRD'.
[3ae430db0381]
* libxllmnrd/interface.cpp: Write logs only when actually
inserted/erased the address.
[5618e2f45cf1]
* libxllmnrd/interface.cpp: Write logs before firing events.
[70416d26272e]
* po/ja.po, po/xllmnrd.pot: Update the message translation files.
[a69835051313]
* libxllmnrd/ifaddr.cpp, libxllmnrd/ifaddr.h: Remove 'ifaddr' code.
[ce67ee7a42db]
* test/test_ifaddr.cpp: Remove 'ifaddr' test code.
[0a504c526fcb]
* libxllmnrd/Makefile.am, test/Makefile.am: Remove 'ifaddr' files from
Makefiles.
[b27f7ff26cce]
* xllmnrd/xllmnrd.cpp: Remove calls to 'ifaddr' functions.
[5470d8e103fa]
* Merge master into feature/remove-ifaddr.
[e9928a938dae]
* libxllmnrd/rtnetlink.cpp: Modify debug logging.
[302b8242fe16]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Modify
'dispatch_messages' so that it completes the refresh task properly.
[adb04f482334]
2020-06-28 Kaz Nishimura <[email protected]>
* Merge back release/3.0.
[9300900a6120]
* .hgtags: Added tag release/3.0 for changeset 8cbada9b725b.
[99bed290a0f2]
2020-06-24 Kaz Nishimura <[email protected]>
* .github/workflows/release.yml: Add a workflow for GitHub.
[73996c860d56]
2020-06-23 Kaz Nishimura <[email protected]>
* test/test_rtnetlink.cpp: Rename test class 'RtnetlinkTests'.
[818904149e2f]
* test/test_rtnetlink.cpp: Divide test cases into smaller pieces.
[dd3c1ae32564]
* test/test_rtnetlink.cpp: Add a sleep in 'tearDown'.
[1b55701bf046]
* Merge master into feature/remove-ifaddr.
[c8ed6dd7c65a]
* test/test_rtnetlink.cpp: Try to get syslog messages in stderr.
[ff2d8bd4e024]
2020-06-19 Kaz Nishimura <[email protected]>
* test/test_ifaddr.cpp: Scan for available interfaces.
[84ef306970d4]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Remove method
'mutex' from 'interface_manager'.
[6e6cdc8f67bb]
* libxllmnrd/interface.h: Add method 'debug_level' and
'set_debug_level' to 'interface_manager'.
[95cee1c7647a]
* xllmnrd/responder.cpp: Replace 'ifaddr' function calls with
'interface_manager' calls.
[f902b509db9f]
* po/ja.po, po/xllmnrd.pot: Update the translation template.
[bf63d53954a6]
* po/ja.po, po/xllmnrd.pot: Update the translation template.
[3da82193c440]
* po/POTFILES.in: Fix the file list.
[c6529ba9a347]
* po/POTFILES.in: Fix the file list.
[e0f91be25e4b]
* xllmnrd/Makefile.am, xllmnrd/main.cpp, xllmnrd/xllmnrd.cpp: Rename
'main.cpp'.
[49b9ab88c70b]
* xllmnrd/Makefile.am, xllmnrd/main.cpp, xllmnrd/xllmnrd.cpp: Rename
'main.cpp'.
[878d327e3269]
* xllmnrd/responder.h: Remove an unused include directive.
[0edc184c4c3f]
* xllmnrd/responder.cpp: Create an 'interface_manager' object in the
responder.
[4258294e476a]
* xllmnrd/Makefile.am: Produce the manual page using 'config.status'.
[ada6fa3a47cc]
* po/ja.po, po/xllmnrd.pot: Update the message template for new
versions.
[15f6adb0b90c]
* configure.ac, lsb/Makefile.am, lsb/README: Remove the 'lsb'
directory.
[4100b9d0fc30]
* Makefile.am, lsb/xllmnrd.in, xllmnrd/Makefile.am,
xllmnrd/xllmnrd.init.in: Produce the sample init script in the
'xllmnrd' directory.
[36f871240333]
* test/Makefile.am: Add 'run-test.in' to EXTRA_DIST.
[2a9054d16f8b]
2020-06-15 Kaz Nishimura <[email protected]>
* libxllmnrd/interface.h, libxllmnrd/rtnetlink.h: Add more access
specifiers to classes.
[1db2f07e8239]
* README.md: Edit the README file.
[43d8a70ce93f]
2020-06-14 Kaz Nishimura <[email protected]>
* azure-pipelines.yml, configure.ac: Change the package version to
4.0.
[1dcb556783c3]
* Merge master into release/3.
[8cbada9b725b] <release>
* ChangeLog: Update the change log.
[70479f20951f]
* NEWS: Update the news.
[79ab3faad280]
* AUTHORS: Update the email.
[7c320c255690]
* libxllmnrd/rtnetlink.cpp: Use '_os->send'.
[d24e29d21b56]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Clean up members.
[b507a6fd309b]
* libxllmnrd/interface.h, libxllmnrd/rtnetlink.h: Modify data member
declarations.
[43a37102e00d]
2020-06-13 Kaz Nishimura <[email protected]>
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Rename
'finish_refresh'.
[bcc72e994368]
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Rename a
parameter.
[0c78d51715b1]
* libxllmnrd/rtnetlink.cpp: Modify code formatting.
[438b5bb6ddb8]
* libxllmnrd/interface.h, libxllmnrd/rtnetlink.cpp,
libxllmnrd/rtnetlink.h: Implement asynchronous refresh.
[2241fe31fe55]
* README.md: Update the README file.
[e13f66b5e570]
* configure.ac: Add 'foreign' to the Automake options.
[a0f481147f88]
* README: Remove the 'README' file.
[c73d50934ecf]
* configure.ac: Change the package name.
[5e5137a568fb]
* lsb/Makefile.am, lsb/xllmnrd.in: Use the 'config.status' script to
produce the LSB init script.
[402d8ff67153]
* po/ja.po, po/xllmnrd.pot: Update the message catalogue files.
[ff2ec3e11804]
* azure-pipelines.yml, configure.ac: Change the package version to
3.0.
[7c6ef6758cab]
2020-06-12 Kaz Nishimura <[email protected]>
* libxllmnrd/rtnetlink.cpp, libxllmnrd/rtnetlink.h: Make 'refresh'
wait for completion.
[619aaae6d063]
2020-06-11 Kaz Nishimura <[email protected]>
* po/ja.po, po/xllmnrd.pot: Regenerate files.
[b5e83eb1fdf2]
* po/POTFILES.in: Fix file locations.
[2a3789249eec]
* test/test_ifaddr.cpp: Add 'sleep' calls after 'ifaddr_start'.
[2341a377072c]
* libxllmnrd/ifaddr.cpp: Add a check for interfaces with no addresses.
[6b779d2d5314]
* libxllmnrd/ifaddr.cpp: Restore tests for the running state.
[993ee2731093]
* libxllmnrd/rtnetlink.h: Add new method 'running'.
[560a08ccc1e0]
* libxllmnrd/ifaddr.cpp: Add a test for the internal state.
[0cab725861db]
* .vscode/launch.json: Update the debugging configuration.
[691e3fda70f0]
* Makefile.am, configure.ac, src/Makefile.am, src/llmnr.c,
src/llmnr.h, src/llmnr_packet.h, src/main.cpp, src/responder.cpp,
src/responder.h, src/xllmnrd.8.in, xllmnrd/Makefile.am,
xllmnrd/llmnr.c, xllmnrd/llmnr.h, xllmnrd/llmnr_packet.h,
xllmnrd/main.cpp, xllmnrd/responder.cpp, xllmnrd/responder.h,
xllmnrd/xllmnrd.8.in: Rename the 'src' directory to 'xllmnrd'.
[4fbe35335e7c]
* libxllmnrd/ifaddr.cpp: Enabled the class-based interface manager.
[80b1feff96e0]
* src/responder.cpp: Add a test to ignore non-IPv6 addresses.
[f11f517ab911]
* libxllmnrd/ifaddr.cpp: Revise conditionally compiled code for
IFADDR_CPLUSPLUS != 0.
[ce71193b3f7a]
* azure-pipelines.yml: Change the directory for publishing artifacts.
[4a590ee2b57e]
2020-06-08 Kaz Nishimura <[email protected]>
* test/test_rtnetlink.cpp: Add test assertions to compare events
counts.
[4d787e82e8fe]
* libxllmnrd/interface.cpp: Add code to fire interface change events
on address changes.
[d00ebbe2edc0]
* libxllmnrd/interface.cpp: Remove code to erase an empty interface.
[4f6b3ccbf0bf]
* libxllmnrd/interface.cpp: Add code to fire interface change events
in 'remove_interfaces'.
[fb665c0b9895]
* test/test_rtnetlink.cpp: Add '' to a method parameter.
[78d445a94c9a]
* libxllmnrd/interface.cpp: Change method parameters to const.
[b022240152a7]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Rename '_mutex' to
'_interfaces_mutex'.
[30e8cb6cc668]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Change the new
methods to out-of-line.
[138b91324218]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Add new methods
'in_addresses' and 'in6_addresses'.
[f2b8c9ff33ba]
* ChangeLog: Update the change log.
[b7cfd786a862]
2020-06-07 Kaz Nishimura <[email protected]>
* test/test_rtnetlink.cpp: Add a test for 'set_interface_change'.
[219fba469edc]
* libxllmnrd/interface.h, libxllmnrd/rtnetlink.cpp,
libxllmnrd/rtnetlink.h: Remove the 'start' method from
'interface_manager'.
[e51c598d5f84]
* configure.ac: Modify configure checks.
[43b91b0630b9]
* configure.ac: Remove checks for 'uintN_t'.
[f8321ccdf9b1]
* configure.ac: Modify library checks.
[2ebfbabca893]
* libxllmnrd/interface.h: Add 'address_family' to the interface change
event class.
[c75bfd8ed223]
* libxllmnrd/interface.h, src/responder.cpp: Modify
'interface_change_event' with a constructor.
[3de0d3d8ad66]
* libxllmnrd/interface.cpp, libxllmnrd/interface.h: Add member
function 'fire_interface_change'.