summaryrefslogtreecommitdiff
path: root/exploits/7350bindnxt/code.h
blob: c547e83cf92d73668bf050b6163d8a8848d87763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef CODE_H
#define CODE_H

#define LINUX_I386 0x0
#define BSD_I386 0x1
#define ARCH_MAX 0x2

#define PORTSHELL	0x0
#define PEERNAME	0x1
#define TYPE_MAX	0x2

typedef struct c0de {
	char	*code;
	int	codesize;
} c0de;

extern c0de	*archs[];
extern char	*archs_str[],
		*code_str[];

#endif /* CODE_H */