fix linux compile

This commit is contained in:
wangyu- 2018-06-16 11:44:14 -05:00
parent fc82fe45c7
commit 62e78999de
3 changed files with 17 additions and 1 deletions

View File

@ -972,7 +972,6 @@ void sigint_cb(struct ev_loop *l, ev_signal *w, int revents)
int main(int argc, char *argv[])
{
init_pcap();
int i=0;
char errbuf[PCAP_ERRBUF_SIZE];

View File

@ -32,6 +32,14 @@ cygwin:git_version
rm -f ${NAME}
${cc_local} -o ${NAME} -I. ${SOURCES} pcap_wrapper.cpp ${FLAGS} -lrt -ggdb -static -O2 -D_GNU_SOURCE
linux:git_version
rm -f ${NAME}
${cc_local} -o ${NAME} -I. ${SOURCES} ${PCAP} ${LIBNET} ${FLAGS} -lrt -ggdb -static -O2
linux_nolibnet:git_version
rm -f ${NAME}
${cc_local} -o ${NAME} -I. ${SOURCES} ${PCAP} ${FLAGS} -lrt -ggdb -static -O2 -DNO_LIBNET
mac:git_version
rm -f ${NAME}
${cc_local} -o ${NAME} -I. ${SOURCES} ${FLAGS} -ggdb -O2

View File

@ -31,6 +31,15 @@ char* (*pcap_lookupdev)(char *);
int (*pcap_findalldevs)(pcap_if_t **, char *);
struct init_pcap_t
{
init_pcap_t()
{
init_pcap();
}
}do_it;
int init_pcap()
{
HMODULE wpcap=LoadLibrary("wpcap.dll");