X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/blobdiff_plain/5260325f3150ad441f310d31239beeb765f716ed..dc11a83afe9daca9d29ef753205ad8479550b750:/deattack.h diff --git a/deattack.h b/deattack.h index 6ce54ded..0316fb28 100644 --- a/deattack.h +++ b/deattack.h @@ -1,3 +1,5 @@ +/* $OpenBSD: deattack.h,v 1.10 2006/09/16 19:53:37 djm Exp $ */ + /* * Cryptographic attack detector for ssh - Header file * @@ -23,6 +25,7 @@ /* Return codes */ #define DEATTACK_OK 0 #define DEATTACK_DETECTED 1 +#define DEATTACK_DOS_DETECTED 2 -int detect_attack(unsigned char *buf, u_int32_t len, unsigned char IV[8]); +int detect_attack(u_char *, u_int32_t); #endif