diff options
author | Xin LI <delphij@FreeBSD.org> | 2015-01-07 19:55:18 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2015-01-07 19:55:18 +0000 |
commit | 3c602fabf9b894ff79f08a80cbb7ad3b1eb84e62 (patch) | |
tree | e268839e08c106e178b33bd461d8d0a9c6fb5ad9 /contrib/tcpdump/signature.h | |
parent | 61b3223976cc010f61cd50773dd8b9e06d123d9a (diff) | |
parent | e91eac244982a8728f370000c353b16e18174ec9 (diff) |
Notes
Diffstat (limited to 'contrib/tcpdump/signature.h')
-rw-r--r-- | contrib/tcpdump/signature.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/tcpdump/signature.h b/contrib/tcpdump/signature.h index e48b722988aa..a052df866fb8 100644 --- a/contrib/tcpdump/signature.h +++ b/contrib/tcpdump/signature.h @@ -1,4 +1,4 @@ -/* +/* * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that: (1) source code * distributions retain the above copyright notice and this paragraph @@ -15,7 +15,8 @@ * Original code by Hannes Gredler (hannes@juniper.net) */ -/* @(#) $Header: /tcpdump/master/tcpdump/signature.h,v 1.1 2008-08-16 11:36:20 hannes Exp $ (LBL) */ +/* for netdissect_options */ +#include "netdissect.h" /* signature checking result codes */ #define SIGNATURE_VALID 0 @@ -23,4 +24,4 @@ #define CANT_CHECK_SIGNATURE 2 extern const struct tok signature_check_values[]; -extern int signature_verify (const u_char *, u_int, u_char *); +extern int signature_verify(netdissect_options *, const u_char *, u_int, u_char *); |