diff options
author | Guy Harris <guy@alum.mit.edu> | 2017-03-10 14:20:58 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2017-03-10 14:20:58 -0800 |
commit | 0766faac5e7b85d71e3cf2a69dd763871e4a373b (patch) | |
tree | 286ee291e7ab086ce655e8e1bbf3f0e9b527c339 /pcap-new.c | |
parent | 503e21ed3be32079daeef6f9a7eee3544868f326 (diff) |
Put rpcap protocol definitions into rpcap/rpcap-protocol.h.
This is a cleanup in the process of adding the rpcap server to the
project.
Diffstat (limited to 'pcap-new.c')
-rw-r--r-- | pcap-new.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -36,8 +36,9 @@ #endif #include "pcap-int.h" // for the details of the pcap_t structure -#include "pcap-rpcap.h" #include "sockutils.h" +#include "rpcap/rpcap-protocol.h" +#include "pcap-rpcap.h" #include <errno.h> // for the errno variable #include <stdlib.h> // for malloc(), free(), ... #include <string.h> // for strstr, etc |