/* host_info.h */

#ifndef HOST_INFO_H
#define HOST_INFO_H

#include <asm/types.h>
#include <netinet/tcp.h>

#define TCP_HOSTS 42
#define TCP_MAX_HOST_LEN 255

struct host_info {
   __u8 rcv_host[TCP_MAX_HOST_LEN + 1];
   __u8 rcv_host_len;
   __u8 snd_host[TCP_MAX_HOST_LEN + 1];
   __u8 snd_host_len;
};

#endif
/* done */
