aboutsummaryrefslogtreecommitdiffstats
path: root/packet-sll.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-11-20 21:59:18 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-11-20 21:59:18 +0000
commit93bdfea13eb69582c481bcbb5c59cf90f3004144 (patch)
treeae3c72a5204d6498a7f2957738be88615f89a115 /packet-sll.h
parent960baf0e34e0de2c339e051afe1e411bd4595f89 (diff)
Make the capture routines take an additional argument giving the amount
of packet data captured. Make the "BYTES_ARE_IN_FRAME()" macro take a "captured length of the packet" argument. Add some length checks to capture routines. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4235 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-sll.h')
-rw-r--r--packet-sll.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/packet-sll.h b/packet-sll.h
index 422eb5ea5a..c65fc34f12 100644
--- a/packet-sll.h
+++ b/packet-sll.h
@@ -1,11 +1,10 @@
/* packet-sll.h
*
- * $Id: packet-sll.h,v 1.1 2001/01/13 03:17:15 gram Exp $
+ * $Id: packet-sll.h,v 1.2 2001/11/20 21:59:13 guy Exp $
*
* Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@zing.org>
+ * By Gerald Combs <gerald@ethereal.com>
* Copyright 2001 Gerald Combs
- *
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -25,6 +24,6 @@
#ifndef __PACKET_SLL_H__
#define __PACKET_SLL_H__
-void capture_sll(const u_char *, packet_counts *);
+void capture_sll(const u_char *, int, packet_counts *);
#endif