|
inet_addr
The Windows Sockets inet_addr function converts a string containing an Internet Protocol dotted address
into an in_addr.
unsigned long inet_addr (
Parameters
cp
[in] A null-terminated character string representing a number expressed in the
Internet standard ".'' notation.
Remarks
This 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).
Internet Addresses
Values specified using the ".'' notation take one of the following forms:
a.b.c.d a.b.c a.b a
When four parts are specified, each is interpreted as a byte of data and
assigned, from left to right, to the four bytes of an Internet address. Note that
when an Internet address is viewed as a 32-bit integer quantity on the Intel
architecture, the bytes referred to above appear as "d.c.b.a''. That is, the bytes
on an Intel processor are ordered from right to left.
Note The following notations are only used by Berkeley, and nowhere else on the
Internet. In the interests of compatibility with their software, they are
supported as specified.
When a three part address is specified, the last part is interpreted as a
16-bit quantity and placed in the right most two bytes of the network address. This
makes the three part address format convenient for specifying Class B network
addresses as "128.net.host''.
When a two part address is specified, the last part is interpreted as a 24-bit
quantity and placed in the right most three bytes of the network address. This
makes the two part address format convenient for specifying Class A network
addresses as "net.host''.
When only one part is given, the value is stored directly in the network
address without any byte rearrangement.
Return Values
If no error occurs, inet_addr returns an unsigned long containing a suitable binary representation of the
Internet address given. If the passed-in string does not contain a legitimate
Internet address, for example if a portion of an "a.b.c.d" address exceeds 255, inet_addr returns the value INADDR_NONE.
See Also
inet_ntoa
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime without manual coding. Full C# source codes are available More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|