基本介紹
原型:in_addr_t inet_addr(const char * cp);
參數:字元串,一個點分十進制的IP位址
返回值:
如果正確執行將返回一個無符號長整數型數。如果傳入的字元串不是一個合法的IP位址,將返回INADDR_NONE。
頭檔案:
Winsock2.h (windows)
arpa/inet.h (Linux)
英文原意
The Windows Sockets inet_addr function converts a string containing an (Ipv4) Internet Protocol dotted address into a proper address for the IN_ADDR structure.
unsigned long inet_addr(const char FAR *cp );
Parameters
cp
[in] Null-terminated character string representing a number expressed in the Internet standard ".'' (dotted) notation.
Return Values
If no error occurs, inet_addr returns an unsigned long value containing a suitable binary representation of the Internet address given. If the string in the cp parameter does not contain a legitimate Internet address, for example if a portion of an "a.b.c.d" address exceeds 255, then inet_addr returns the value INADDR_NONE.
Remarks The inet_addr function interprets the character string specified by the cp parameter. This string represents a numeric Internet address expressed in the Internet standard ".'' notation. The value returned is a number suitable for use as an Internet address. All Internet addresses are returned in IP's network order (bytes ordered from left to right). If you pass in " " (a space) to the inet_addr function, inet_addr returns zero.
基本注釋
本函式解釋cp參數中的字元串,這個字元串用Internet的“.”間隔格式表示一個數字的Internet地址。返回值可用作Internet地址。所有Internet地址以網路位元組順序返回(位元組從左到右排列)。
Internet地址用“.”間隔的地址可有下列幾種表達方式:
a.b.c.d,a.b.c,a.b,a
當四個部分都有定值時,每個都解釋成一個位元組數據,從左到右組成Internet四位元組地址。請注意,當一個Internet地址在Intel機器上表示成一個32位整型數時,則上述的位元組為“d.c.b.a”。這是因為Intel處理器的位元組是從右向左排列的。
請注意:只有Berkeley支持下述表達法,Internet其餘各處均不支持。考慮到與軟體的兼容性,應按規定進行使用。
對一個三部分地址,最後一部分解釋成16位數據並作為網路地址的最右兩個位元組。這樣,三部分地址便很容易表示B組網路地址,如“128.net.host”.
對一個兩部分地址,最後一部分解釋成24位數據並作為網路地址的最右三個位元組,這樣,兩部分地址便很容易表示C組網路地址,如“net.host”。
對僅有一個部分的地址,則將它的值直接存入網路地址不作任何位元組的重組。
返回值:
若無錯誤發生,inet_addr()返回一個無符號長整型數,其中以適當位元組順序存放Internet地址。如果傳入的字元串不是一個合法的Internet地址,如“a.b.c.d”地址中任一項超過255,那么inet_addr()返回INADDR_NONE。在IP只有一部分時(即沒有 ”.“ 時),IP的字元串如果只由數字組成,inet_addr()不檢查數字是否大於255。
基本要求
作業系統:Windows 2000 Professional 或更高版本
頭檔案:Winsock2.h
程式庫:Ws2_32.lib
參見:
inet_ntoa().
例如: *.sin_addr.s_addr=htonl(inaddr_any)是什麼意思?
答: *.sin_addr.s_addr=htonl(inaddr_any) 是SOCKET編程中用到的.
*是任意定義的一個sockaddr_in型的結構體對象 sin_addr是他的一個屬性,用於定義IP位址,是struct in_addr型的,s_addr為結構體in_addr的對象,簡單說就是三個結構體嵌套包裝的一個包.
inaddr_any一般為核心指定的,大多數系統取0,表示任意的IP位址.
htonl()簡單說是一個把本機IP轉化為網路協定中規定的格式的函式.也就是所謂的大端模式或小端模式
編程舉例
#include <Winsock2.h>
#include <stdio.h>
int main()
{
in_addr ipAddr;
ipAddr.S_un.S_addr = inet_addr("127.0.0.1"); //將字元串形式的IP位址轉換為按網路位元組順序的整型值
printf("\n%u", ipAddr.S_un);
return 0;
}