blob: 0316fb28543b17347f6f25a76725f48aa7f7fb7e [file] [log] [blame]
Damien Miller3c9c1fb2006-09-17 06:08:53 +10001/* $OpenBSD: deattack.h,v 1.10 2006/09/16 19:53:37 djm Exp $ */
Ben Lindstrom36579d32001-01-29 07:39:26 +00002
Damien Miller95def091999-11-25 00:26:21 +11003/*
Damien Millerd4a8b7e1999-10-27 13:42:43 +10004 * Cryptographic attack detector for ssh - Header file
5 *
6 * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina.
7 *
8 * All rights reserved. Redistribution and use in source and binary
9 * forms, with or without modification, are permitted provided that
10 * this copyright notice is retained.
11 *
12 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
13 * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE
14 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR
15 * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS
16 * SOFTWARE.
17 *
18 * Ariel Futoransky <futo@core-sdi.com>
Damien Miller95def091999-11-25 00:26:21 +110019 * <http://www.core-sdi.com>
20 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
22#ifndef _DEATTACK_H
23#define _DEATTACK_H
24
25/* Return codes */
26#define DEATTACK_OK 0
27#define DEATTACK_DETECTED 1
Damien Miller3c9c1fb2006-09-17 06:08:53 +100028#define DEATTACK_DOS_DETECTED 2
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029
Damien Miller2dbbf8e2006-03-26 00:11:46 +110030int detect_attack(u_char *, u_int32_t);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031#endif