and __BYTE_ORDER into ... * include/bits/endian.h: New file. * include/arpa/nameser_compat.h: Include endian.h rather than defining BYTE_ORDER here. * include/asm/byteorder.h: Include bits/endian.h. Drop definition of __LITTLE_ENDIAN. * include/netinet/ip.h: Include bits/endian.h. Drop definitions of BIG_ENDIAN, LITTLE_ENDIAN, and BYTE_ORDER. Use underscored variants of aforementioned constants. * include/netinet/tcp.h: Ditto. * include/sys/param.h: Drop disabled definitions of BIG_ENDIAN, LITTLE_ENDIAN, and BYTE_ORDER. * include/netinet/ip.h: Reformat. Define setsockopt IP_TOS options matching recent RFCs. Tweak comments.
		
			
				
	
	
		
			78 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* endian.h
 | 
						|
 | 
						|
   Copyright 2005, 2010, 2011 Red Hat, Inc.
 | 
						|
 | 
						|
This file is part of Cygwin.
 | 
						|
 | 
						|
This software is a copyrighted work licensed under the terms of the
 | 
						|
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
 | 
						|
details. */
 | 
						|
 | 
						|
#ifndef _ENDIAN_H_
 | 
						|
#define _ENDIAN_H_
 | 
						|
 | 
						|
#include <sys/config.h>
 | 
						|
#include <bits/endian.h>
 | 
						|
 | 
						|
/*#ifdef  __USE_BSD*/
 | 
						|
# define LITTLE_ENDIAN  __LITTLE_ENDIAN
 | 
						|
# define BIG_ENDIAN     __BIG_ENDIAN
 | 
						|
# define PDP_ENDIAN     __PDP_ENDIAN
 | 
						|
# define BYTE_ORDER     __BYTE_ORDER
 | 
						|
/*#endif*/
 | 
						|
 | 
						|
#if __BYTE_ORDER == __LITTLE_ENDIAN
 | 
						|
# define __LONG_LONG_PAIR(HI, LO) LO, HI
 | 
						|
#elif __BYTE_ORDER == __BIG_ENDIAN
 | 
						|
# define __LONG_LONG_PAIR(HI, LO) HI, LO
 | 
						|
#endif
 | 
						|
 | 
						|
#if /*defined __USE_BSD ||*/ ! defined _POSIX_SOURCE
 | 
						|
 | 
						|
#include <byteswap.h>
 | 
						|
 | 
						|
#if __BYTE_ORDER == __LITTLE_ENDIAN
 | 
						|
 | 
						|
#define htobe16(x) bswap_16(x)
 | 
						|
#define htobe32(x) bswap_32(x)
 | 
						|
#define htobe64(x) bswap_64(x)
 | 
						|
 | 
						|
#define be16toh(x) bswap_16(x)
 | 
						|
#define be32toh(x) bswap_32(x)
 | 
						|
#define be64toh(x) bswap_64(x)
 | 
						|
 | 
						|
#define htole16(x) (x)
 | 
						|
#define htole32(x) (x)
 | 
						|
#define htole64(x) (x)
 | 
						|
 | 
						|
#define le16toh(x) (x)
 | 
						|
#define le32toh(x) (x)
 | 
						|
#define le64toh(x) (x)
 | 
						|
 | 
						|
#endif /*__BYTE_ORDER == __LITTLE_ENDIAN*/
 | 
						|
 | 
						|
#if __BYTE_ORDER == __BIG_ENDIAN
 | 
						|
 | 
						|
#define htobe16(x) (x)
 | 
						|
#define htobe32(x) (x)
 | 
						|
#define htobe64(x) (x)
 | 
						|
 | 
						|
#define be16toh(x) (x)
 | 
						|
#define be32toh(x) (x)
 | 
						|
#define be64toh(x) (x)
 | 
						|
 | 
						|
#define htole16(x) bswap_16(x)
 | 
						|
#define htole32(x) bswap_32(x)
 | 
						|
#define htole64(x) bswap_64(x)
 | 
						|
 | 
						|
#define le16toh(x) bswap_16(x)
 | 
						|
#define le32toh(x) bswap_32(x)
 | 
						|
#define le64toh(x) bswap_64(x)
 | 
						|
 | 
						|
#endif /*__BYTE_ORDER == __BIG_ENDIAN*/
 | 
						|
 | 
						|
#endif /*__USE_BSD || !_POSIX_SOURCE*/
 | 
						|
 | 
						|
#endif /*_ENDIAN_H_*/
 | 
						|
 |