소스 검색

add IN_LOOPBACKNET constant (nonstandard but in reserved namespace)

Rich Felker 14 년 전
부모
커밋
2b55a619e4
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      include/netinet/in.h

+ 2 - 0
include/netinet/in.h

@@ -153,4 +153,6 @@ uint16_t ntohs(uint16_t);
 #define	IN_EXPERIMENTAL(a)	((((in_addr_t)(a)) & 0xe0000000) == 0xe0000000)
 #define	IN_BADCLASS(a)		((((in_addr_t)(a)) & 0xf0000000) == 0xf0000000)
 
+#define IN_LOOPBACKNET 127
+
 #endif