dect
/
libpcap
Archived
13
0
Fork 0

update changes file

This commit is contained in:
mcr 2004-03-30 14:42:50 +00:00
parent 0a56a3721a
commit eb9ec105d1
3 changed files with 16 additions and 3 deletions

View File

@ -1,5 +1,11 @@
@(#) $Header: /tcpdump/master/libpcap/CHANGES,v 1.58 2004-03-29 17:40:11 mcr Exp $ (LBL)
@(#) $Header: /tcpdump/master/libpcap/CHANGES,v 1.59 2004-03-30 14:42:50 mcr Exp $ (LBL)
Tue. March 30, 2004. mcr@sandelman.ottawa.on.ca. Summary for 3.8.3 release
Fixed minor problem in gencode.c that would appear on 64-bit
platforms.
Version number is now sane.
Mon. March 29, 2004. mcr@sandelman.ottawa.on.ca. Summary for 3.8.2 release
updates for autoconf 2.5

View File

@ -1 +1 @@
0.8
1.0-PRE-CVS

View File

@ -31,7 +31,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#) $Header: /tcpdump/master/libpcap/pcap1.h,v 1.1 2004-03-24 19:51:11 mcr Exp $ (LBL)
* @(#) $Header: /tcpdump/master/libpcap/pcap1.h,v 1.2 2004-03-30 14:42:50 mcr Exp $ (LBL)
*/
#ifndef lib_pcap_h
@ -114,6 +114,7 @@ enum pcap1_info_types {
PCAP_WALLTIME,
PCAP_TIMESKEW,
PCAP_PROBEPLACE, /* aka direction */
PCAP_COMMENT, /* comment */
};
struct pcap1_info_container {
@ -150,6 +151,12 @@ enum pcap1_probe {
struct pcap1_info_probe {
struct pcap1_info_container pic;
bpf_u_int32 probeloc; /* enum pcap1_probe */
unsigned char probe_desc[0];
};
struct pcap1_info_comment {
struct pcap1_info_container pic;
unsigned char comment[0];
};
struct pcap1_packet_header {