forked from mjansson/mdns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
47 lines (23 loc) · 1.47 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
2.0
Forked, costumized built pipeline to make to make if work with the LoopIT
1.4.3
Fixed a possible buffer overflow in txt record parse
Fixed parsing boolean txt records (keys without value)
Ignore questions field in query receive, allowing replies with multiple questions
1.4.2
Add mdns_goodbye_multicast function to send end of service announcement
Fix the rclass and TTL for announce and goodbye to avoid flush flag on shared records
Fixed an issue with parsing multiple answer records in discovery
All authority and additional records are now sent to service callback function
Various code cleanups, making all functions inline declared.
Added a dump mode to the example application for listing all mDNS traffic on port 5353
1.4.1
Use const pointers in socket open and setup functions.
Avoid null pointer arithmetics for standard compliance.
1.4
Returning non-zero from callback function during record parsing immedediately stops parsing and returns the number of records parsed so far.
The function to send a query answer has been split in two, one for unicast answer and one for multicast.
The functions to send query answers have been generalized to send any number of records.
Added new function to do multicast announce on start/wake-up (unsolicited answer).
Added parsing of ANY question records and DNS-SD queries with multiple questions
Removed mdns_discovery_answer in favour of the new generalized answer functions, to handle both unicast and multicast response