00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef __LWIP_INET_H__
00036 #define __LWIP_INET_H__
00037
00038 #include "net/arch.h"
00039
00040 #include "net/opt.h"
00041 #include "net/pbuf.h"
00042 #include "net/ipv4/ip_addr.h"
00043
00044 uInt16 inet_chksum(void *dataptr, uInt16 len);
00045 uInt16 inet_chksum_pbuf(struct pbuf *p);
00046 uInt16 inet_chksum_pseudo(struct pbuf *p,
00047 struct ip_addr *src, struct ip_addr *dest,
00048 uInt8 proto, uInt16 proto_len);
00049
00050 #ifdef HTONS
00051 #undef HTONS
00052 #endif
00053 #ifdef NTOHS
00054 #undef NTOHS
00055 #endif
00056 #ifdef HTONL
00057 #undef HTONL
00058 #endif
00059 #ifdef NTOHL
00060 #undef NTOHL
00061 #endif
00062
00063 #ifndef HTONS
00064 # if BYTE_ORDER == BIG_ENDIAN
00065 # define HTONS(n) (n)
00066 # define htons(n) HTONS(n)
00067 # else
00068 # define HTONS(n) (((((uInt16)(n) & 0xff)) << 8) | (((uInt16)(n) & 0xff00) >> 8))
00069 # endif
00070 #endif
00071
00072 #ifdef NTOHS
00073 #undef NTOHS
00074 #endif
00075
00076 #ifdef ntohs
00077 #undef ntohs
00078 #endif
00079
00080 #define NTOHS HTONS
00081 #define ntohs htons
00082
00083
00084 #ifndef HTONL
00085 # if BYTE_ORDER == BIG_ENDIAN
00086 # define HTONL(n) (n)
00087 # define htonl(n) HTONL(n)
00088 # else
00089 # define HTONL(n) (((((uInt32)(n) & 0xff)) << 24) | \
00090 ((((uInt32)(n) & 0xff00)) << 8) | \
00091 ((((uInt32)(n) & 0xff0000)) >> 8) | \
00092 ((((uInt32)(n) & 0xff000000)) >> 24))
00093 # endif
00094 #endif
00095
00096 #ifdef ntohl
00097 #undef ntohl
00098 #endif
00099
00100 #ifdef NTOHL
00101 #undef NTOHL
00102 #endif
00103
00104 #define NTOHL HTONL
00105 #define ntohl htonl
00106
00107 #ifndef _MACHINE_ENDIAN_H_
00108 #ifndef _NETINET_IN_H
00109 #ifndef _LINUX_BYTEORDER_GENERIC_H
00110
00111 #if BYTE_ORDER == LITTLE_ENDIAN
00112 uInt16 htons(uInt16 n);
00113 uInt32 htonl(uInt32 n);
00114 #else
00115 #endif
00116
00117 #endif
00118 #endif
00119 #endif
00120
00121 #endif
00122