Penguin

Differences between current version and revision by previous author of inet_aton(3).

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 5 Last edited on Friday, July 18, 2003 5:12:48 pm by SamJansen
Older page: version 4 Last edited on Tuesday, June 4, 2002 12:24:24 am by perry Revert
@@ -1,28 +1,18 @@
-INET  
-!!!INET  
-NAME  
-SYNOPSIS  
-DESCRIPTION  
-CONFORMING TO  
-SEE ALSO  
-----  
 !!NAME 
-  
-  
 inet_aton, inet_addr, inet_network, inet_ntoa, inet_makeaddr, inet_lnaof, inet_netof - Internet address manipulation routines 
 !!SYNOPSIS 
+ __#include <sys/socket.h>__  
+ __#include <netinet/in.h>__  
+ __#include <arpa/inet.h>__  
  
-  
- __#include  
- __''cp''__, struct in_addr *__''inp''__);  
-in_addr_t inet_addr(const char *__''cp''__);  
-in_addr_t inet_network(const char *__''cp''__);  
-char *inet_ntoa(struct in_addr__ ''in''__);  
-struct in_addr inet_makeaddr(int__ ''net''__, int__ ''host''__);  
-in_addr_t inet_lnaof(struct in_addr__ ''in''__);  
-in_addr_t inet_netof(struct in_addr__ ''in''__);  
- __ 
+ __int inet_aton(const char * __''cp''__, struct in_addr *__''inp''__);__  
+ __ in_addr_t inet_addr(const char *__''cp''__);__  
+ __ in_addr_t inet_network(const char *__''cp''__);__  
+ __ char *inet_ntoa(struct in_addr__ ''in''__);__  
+ __ struct in_addr inet_makeaddr(int__ ''net''__, int__ ''host''__);__  
+ __ in_addr_t inet_lnaof(struct in_addr__ ''in''__);__  
+ __ in_addr_t inet_netof(struct in_addr__ ''in''__);__ 
 !!DESCRIPTION 
  
  
 __inet_aton()__ converts the Internet host address 
@@ -78,11 +68,11 @@
 __inet_netof()__ is defined in ''netinet/in.h'' 
 as: 
  
  
-struct in_addr {  
-unsigned long int s_addr;  
-
+ struct in_addr {  
+ unsigned long int s_addr;  
+
  
  
 Note that on the i80x86 the host byte order is Least 
 Significant Byte first, whereas the network byte order, as 
@@ -95,7 +85,7 @@
 !!SEE ALSO 
  
  
 gethostbyname(3), getnetent(3), 
-inet_ntop(3), __ inet_pton__ (3), hosts(5), 
+inet_ntop(3), inet_pton(3), hosts(5), 
 networks(5) 
 ---- 
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.