OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [net/] [lwip_tcpip/] [current/] [src/] [netif/] [ppp/] [vjbsdhdr.h] - Rev 865

Go to most recent revision | Compare with Previous | Blame | View Log

#ifndef VJBSDHDR_H
#define VJBSDHDR_H
 
#include "lwip/tcp.h"
 
/*
 * Structure of an internet header, naked of options.
 *
 * We declare ip_len and ip_off to be short, rather than u16_t
 * pragmatically since otherwise unsigned comparisons can result
 * against negative integers quite easily, and fail in subtle ways.
 */
PACK_STRUCT_BEGIN
struct ip
{
#if defined(NO_CHAR_BITFIELDS)
  u8_t   ip_hl_v;  /* bug in GCC for mips means the bitfield stuff will sometimes break - so we use a char for both and get round it with macro's instead... */
#else
#if BYTE_ORDER == LITTLE_ENDIAN
  unsigned ip_hl:4,              /* header length */
           ip_v :4;              /* version */
#elif BYTE_ORDER == BIG_ENDIAN
  unsigned ip_v :4,              /* version */
           ip_hl:4;              /* header length */
#else
  COMPLAIN - NO BYTE ORDER SELECTED!
#endif
#endif
  u8_t  ip_tos;                /* type of service */
  u16_t ip_len;                /* total length */
  u16_t ip_id;                 /* identification */
  u16_t ip_off;                /* fragment offset field */
#define  IP_DF 0x4000            /* dont fragment flag */
#define  IP_MF 0x2000            /* more fragments flag */
#define  IP_OFFMASK 0x1fff       /* mask for fragmenting bits */
  u8_t  ip_ttl;                /* time to live */
  u8_t  ip_p;                  /* protocol */
  u16_t ip_sum;                /* checksum */
  struct  in_addr ip_src,ip_dst; /* source and dest address */
};
PACK_STRUCT_END
 
typedef u32_t tcp_seq;
 
/*
 * TCP header.
 * Per RFC 793, September, 1981.
 */
PACK_STRUCT_BEGIN
struct tcphdr
{
  u16_t th_sport;       /* source port */
  u16_t th_dport;       /* destination port */
  tcp_seq th_seq;       /* sequence number */
  tcp_seq th_ack;       /* acknowledgement number */
#if defined(NO_CHAR_BITFIELDS)
  u8_t th_x2_off;
#else
#if BYTE_ORDER == LITTLE_ENDIAN
  unsigned th_x2 :4,    /* (unused) */
           th_off:4;    /* data offset */
#endif
#if BYTE_ORDER == BIG_ENDIAN
  unsigned th_off:4,    /* data offset */
           th_x2 :4;    /* (unused) */
#endif
#endif
  u8_t th_flags;
  u16_t th_win;         /* window */
  u16_t th_sum;         /* checksum */
  u16_t th_urp;         /* urgent pointer */
};
PACK_STRUCT_END
 
#endif /* VJBSDHDR_H */
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.