~ubuntu-branches/ubuntu/utopic/suricata/utopic

« back to all changes in this revision

Viewing changes to src/suricata-common.h

  • Committer: Package Import Robot
  • Author(s): Pierre Chifflier
  • Date: 2012-11-17 09:56:08 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20121117095608-dwebi6atmv0hpwz1
Tags: 1.3.4-1
ImportedĀ UpstreamĀ versionĀ 1.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
#include <assert.h>
132
132
#define BUG_ON(x) assert(!(x))
133
133
 
 
134
#ifdef HAVE_PCAP_H
 
135
#include <pcap.h>
 
136
#endif
 
137
 
 
138
#ifdef HAVE_PCAP_PCAP_H
 
139
#include <pcap/pcap.h>
 
140
#endif
 
141
 
134
142
/* we need this to stringify the defines which are supplied at compiletime see:
135
143
   http://gcc.gnu.org/onlinedocs/gcc-3.4.1/cpp/Stringification.html#Stringification */
136
144
#define xstr(s) str(s)