diff options
| author | Nicolas Thill <nico@openwrt.org> | 2006-01-09 15:46:03 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2006-01-09 15:46:03 +0000 |
| commit | 2647efdaab4e47aa7c853a2f8eb5d22149c842c3 (patch) | |
| tree | b8f090a44c9d871f33347c0fb2d42af2e8d4075e /openwrt/package/pipacs/src/parser.h | |
| parent | 50ace1c6d91f3143478c0b72f5ec91d3da44e7ff (diff) | |
| download | mtk-20170518-2647efdaab4e47aa7c853a2f8eb5d22149c842c3.zip mtk-20170518-2647efdaab4e47aa7c853a2f8eb5d22149c842c3.tar.gz mtk-20170518-2647efdaab4e47aa7c853a2f8eb5d22149c842c3.tar.bz2 | |
add pipacs package (thanks to Janos)
SVN-Revision: 2865
Diffstat (limited to 'openwrt/package/pipacs/src/parser.h')
| -rw-r--r-- | openwrt/package/pipacs/src/parser.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/openwrt/package/pipacs/src/parser.h b/openwrt/package/pipacs/src/parser.h new file mode 100644 index 0000000..aedaeaf --- /dev/null +++ b/openwrt/package/pipacs/src/parser.h @@ -0,0 +1,60 @@ +#define LINUX 1 +#ifdef LINUX +#include <ctype.h> +#include <string.h> +#include <sys/time.h> +#include <sys/types.h> +#include <sys/socket.h> +#include <sys/stat.h> +#include <sys/ioctl.h> +#include <netdb.h> +#include <unistd.h> +#include <arpa/inet.h> +#include <net/if.h> +#define BYTE unsigned char +#define DWORD unsigned long +#define BOOL char +#define TRUE 1 +#define FALSE 0 +#define WSADATA int +#define SOCKET int +#define SOCKADDR struct sockaddr +#define SOCKADDR_IN struct sockaddr_in +typedef struct _WSABUF { + unsigned long len; + unsigned char *buf; +} WSABUF; +#define SIO_RCVALL 0 +#define SIO_RCVALL_IGMPMCAST 0 +#define SIO_RCVALL_MCAST 0 +#define ETH_P_ALL 0x0003 +#else // WINDOWS + +#include <winsock2.h> +#include <windows.h> + +#endif + +#ifndef _RCVALL_H_ +#define _RCVALL_H_ + + +#define MAX_IP_SIZE 65535 +#define MIN_IP_HDR_SIZE 20 + +#define HI_WORD(byte) (((byte) >> 4) & 0x0F) +#define LO_WORD(byte) ((byte) & 0x0F) + +extern char *szProto[]; + + + +void PrintRawBytes (BYTE *ptr, DWORD len); +int DecodeIGMPHeader(WSABUF *wsabuf, DWORD iphdrlen); +int DecodeUDPHeader (WSABUF *wsabuf, DWORD iphdrlen); +int DecodeTCPHeader (WSABUF *wsabuf, DWORD iphdrlenz); +int DecodeIPHeader (WSABUF *wasbuf, unsigned int srcaddr, unsigned short srcport, unsigned long srcnet, + unsigned int destaddr, unsigned short destport, unsigned long destnet, DWORD bytesret, + unsigned short xport, unsigned int xip, unsigned long xnet); + +#endif |
