@@ -20,6 +20,8 @@ Monthday, Month DD, YYYY:
2020 "link-layer type plus other stuff" is non-zero.
2121 rpcap:
2222 Support user names and passwords in rpcap:// and rpcaps:// URLs.
23+ Aadd a -t flag to rpcapd to specify the data channel port; from
24+ another incorporate-remote-capture project. (issue #1120)
2325 Documentation:
2426 Document a standard format for writing out BPF filter programs.
2527 Building and testing:
@@ -39,6 +41,9 @@ Monthday, Month DD, YYYY:
3941 Use PCAP_ERROR (defined as -1) rather than explicit -1 for
4042 functions the documentation says return PCAP_ERROR.
4143 Remove unused code from the filter compiler.
44+ Use _declspec(deprecated(msg)) rather than __pragma(deprecated)
45+ for Windows deprecation warnings, so the message that was
46+ specified shows up.
4247 Savefiles:
4348 Fix pcap_dispatch() to return number of packets processed, rather
4449 than 0, even at EOF.
@@ -81,6 +86,8 @@ Monthday, Month DD, YYYY:
8186 Make sure there's reserved space for a DLT_LINUX_SLL2 header
8287 when capturing.
8388 Correctly compute the "real" length for isochronous USB transfers.
89+ Don't have an eventfd descriptor open in non-blocking mode, so as
90+ not to waste descriptors.
8491 BPF capture (*BSD, macOS, AIX, Solaris 11):
8592 Fix case where a device open might fail, rather than falling back
8693 to a smaller buffer size, when the initial buffer size is too
@@ -96,6 +103,14 @@ Monthday, Month DD, YYYY:
96103 Clean up bufferizing code.
97104 Fix a file descriptor/handle leak in pcap_findalldevs_ex()
98105 (Coverity CID 1507240).
106+ Improve error messages for host and port resolution errors.
107+ Fix connect code not to fail if both IPv4 and IPv6 addresses are
108+ tried.
109+ Improve connect failure error message.
110+ Provide an error message for a bad authentication reply size.
111+ For link-layer types with host-endian fields in the header, fix
112+ those fields if capturing from a server with a different byte
113+ order.
99114 Windows:
100115 Add support for NdisMediumIP (pull request #1027).
101116 Don't require applications using pcap to be built with VS 2015 or
@@ -164,7 +179,7 @@ Monthday, Month DD, YYYY:
164179 Add README.solaris.md.
165180 Add SCTP to pcap-filter(7).
166181 Note that = and == are the same operator in filters (issue #1044).
167- Update INSTALL.md and README.md.
182+ Update INSTALL.md, README.md, and README.solaris .md.
168183 Update and clean up CONTRIBUTING.md.
169184 Trim documentation of support for now-dead UN*Xe and older
170185 versions of other UN*Xes.
@@ -175,6 +190,8 @@ Monthday, Month DD, YYYY:
175190 Improve some protocol details in pcap-filter(7).
176191 Refine "relop" notes in pcap-filter(7).
177192 In pcap-filter(7) "domain" is an id.
193+ Discuss backward compatibility in pcap-filter(7).
194+ Other improvements to pcap-filter(7).
178195
179196Wednesday, June 9, 2021:
180197 Summary for 1.10.1 libpcap release:
0 commit comments