forked from Adellica/parprouted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparprouted.h
80 lines (69 loc) · 2.18 KB
/
parprouted.h
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* parprouted: ProxyARP routing daemon.
* (C) 2008 Vladimir Ivaschenko <vi@maks.net>
*
* This application is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License.
*
* This software 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#define PROC_ARP "/proc/net/arp"
#define ARP_LINE_LEN 255
#define ARP_TABLE_ENTRY_LEN 20
#define ARP_TABLE_ENTRY_TIMEOUT 60 /* seconds */
#define ROUTE_CMD_LEN 255
#define SLEEPTIME 1000000 /* ms */
#define REFRESHTIME 50 /* seconds */
#define MAX_IFACES 10
#define MAX_RQ_SIZE 50 /* maximum size of request queue */
#define VERSION "0.7"
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <syslog.h>
#include <sys/wait.h>
#include <string.h>
#include <time.h>
#include <stdlib.h>
#include <assert.h>
#include <libgen.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <pthread.h>
#include <stdlib.h>
#include <unistd.h>
typedef struct arptab_entry {
struct in_addr ipaddr_ia;
char hwaddr[ARP_TABLE_ENTRY_LEN];
char ifname[ARP_TABLE_ENTRY_LEN];
time_t tstamp;
int route_added;
int incomplete;
int want_route;
struct arptab_entry *next;
} ARPTAB_ENTRY;
extern int debug;
extern int verbose;
extern int option_arpperm;
extern ARPTAB_ENTRY **arptab;
extern pthread_mutex_t arptab_mutex;
extern pthread_mutex_t req_queue_mutex;
extern char * ifaces[MAX_IFACES];
extern int last_iface_idx;
extern void *arp(char *ifname);
extern void refresharp(ARPTAB_ENTRY *list);
extern void arp_req(char *ifname, struct in_addr remaddr, int gratuitous);
extern void parseproc();
extern void processarp(int cleanup);