aboutsummaryrefslogtreecommitdiffstats
path: root/gg_sniff/pcap.c
diff options
context:
space:
mode:
Diffstat (limited to 'gg_sniff/pcap.c')
-rw-r--r--gg_sniff/pcap.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/gg_sniff/pcap.c b/gg_sniff/pcap.c
index 2e31769..91e76c9 100644
--- a/gg_sniff/pcap.c
+++ b/gg_sniff/pcap.c
@@ -62,25 +62,25 @@ struct _cap_t {
int ptruncated;
};
-static pcap_t *my_pcap_open_live(const char *, int, int, int,
- char *, u_int, u_int);
-static void ip_handle(struct ip *, const u_char *, u_int);
-static void conn_del(struct ggnet_conn *);
-static void ether_handle(struct ether_header *, const u_char *, u_int);
-static pcap_handler lookup_phandler(int);
-static void phandler_ether(u_char *,
- const struct pcap_pkthdr *, const u_char *);
+static pcap_t *my_pcap_open_live(const char *, int, int, int,
+ char *, u_int, u_int);
+static void ip_handle(struct ip *, const u_char *, u_int);
+static void conn_del(struct ggnet_conn *);
+static void ether_handle(struct ether_header *, const u_char *, u_int);
+static pcap_handler lookup_phandler(int);
+static void phandler_ether(u_char *,
+ const struct pcap_pkthdr *, const u_char *);
#if defined(__OpenBSD__)
-static void phandler_loop(u_char *,
- const struct pcap_pkthdr *, const u_char *);
+static void phandler_loop(u_char *,
+ const struct pcap_pkthdr *, const u_char *);
#endif
#if defined(__linux__)
-static void phandler_sll(u_char *,
- const struct pcap_pkthdr *, const u_char *);
+static void phandler_sll(u_char *,
+ const struct pcap_pkthdr *, const u_char *);
#endif
-static void cb_pcap(int, short, void *);
-static void cb_conntimer(int, short, void *);
-static void cb_nodename(struct ggnet *, struct ggnet_node *);
+static void cb_pcap(int, short, void *);
+static void cb_conntimer(int, short, void *);
+static void cb_nodename(struct ggnet *, struct ggnet_node *);
static struct phandler phandlers[] = {
{ phandler_ether, DLT_EN10MB },