blob: c91fb3b966d71ee3e1c465a751cfc0ba1d4bc389 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Copyright (C) 2010 Martin Willi
* Copyright (C) 2010 revosec AG
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
/**
* @defgroup farp_spoofer farp_spoofer
* @{ @ingroup farp
*/
#ifndef FARP_SPOOFER_H_
#define FARP_SPOOFER_H_
#include "farp_listener.h"
typedef struct farp_spoofer_t farp_spoofer_t;
/**
* Listen to ARP requests and spoof responses, if required.
*/
struct farp_spoofer_t {
/**
* Destroy a farp_spoofer_t.
*/
void (*destroy)(farp_spoofer_t *this);
};
/**
* Create a farp_spoofer instance.
*
* @param listener listener to check for addresses to spoof
* @return spoofer instance
*/
farp_spoofer_t *farp_spoofer_create(farp_listener_t *listener);
#endif /** FARP_SPOOFER_H_ @}*/
|