]> andersk Git - libfaim.git/blame - utils/aimdump/aimdump.h
Added aimdump.
[libfaim.git] / utils / aimdump / aimdump.h
CommitLineData
fa684c51 1#ifndef __AIMDUMP_H__
2#define __AIMDUMP_H__
3
4#include <unistd.h>
5#include <netinet/if_ether.h>
6#include <pcap/pcap.h>
7#include "util.h"
8#include <signal.h>
9#include <linux/ip.h>
10#include <linux/tcp.h>
11
12/*
13 * These are in NETWORK (big-endian) BYTE ORDER!!!
14 */
15#define SAPLEN 3 /* the length of the SAP header */
16#define SAPHEADER {0xfc, 0xfc, 0x03} /* SAP header bytes */
17#define ETHERTYPE_INCOMING 0x0056 /* on data from the 8227 */
18#define ETHERTYPE_FOUND 0x003d /* on outgoing FOUND frames */
19#define ETHERTYPE_DATA 0x05dc /* on outgoing Data frames */
20
21void parser_icbm_incoming(u_char *data, int len);
22
23#endif /* __AIMDUMP_H__ */
This page took 0.044135 seconds and 5 git commands to generate.