Deleted Added
full compact
pcap-int.h (26176) pcap-int.h (38151)
1/*
2 * Copyright (c) 1994, 1995, 1996
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 22 unchanged lines hidden (view full) ---

31 * SUCH DAMAGE.
32 *
33 * @(#) $Header: pcap-int.h,v 1.18 96/11/27 18:43:09 leres Exp $ (LBL)
34 */
35
36#ifndef pcap_int_h
37#define pcap_int_h
38
1/*
2 * Copyright (c) 1994, 1995, 1996
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 22 unchanged lines hidden (view full) ---

31 * SUCH DAMAGE.
32 *
33 * @(#) $Header: pcap-int.h,v 1.18 96/11/27 18:43:09 leres Exp $ (LBL)
34 */
35
36#ifndef pcap_int_h
37#define pcap_int_h
38
39#ifdef __cplusplus
40extern "C" {
41#endif
42
39#include <pcap.h>
40
41/*
42 * Savefile
43 */
44struct pcap_sf {
45 FILE *rfile;
46 int swapped;

--- 62 unchanged lines hidden (view full) ---

109
110/* Ultrix pads to make everything line up on a nice boundary */
111#if defined(ultrix) || defined(__alpha)
112#define PCAP_FDDIPAD 3
113#endif
114
115/* XXX */
116extern int pcap_fddipad;
43#include <pcap.h>
44
45/*
46 * Savefile
47 */
48struct pcap_sf {
49 FILE *rfile;
50 int swapped;

--- 62 unchanged lines hidden (view full) ---

113
114/* Ultrix pads to make everything line up on a nice boundary */
115#if defined(ultrix) || defined(__alpha)
116#define PCAP_FDDIPAD 3
117#endif
118
119/* XXX */
120extern int pcap_fddipad;
121
122#ifdef __cplusplus
123}
117#endif
124#endif
125
126#endif