GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
scan_ip4(3) FreeBSD Library Functions Manual scan_ip4(3)

scan_ip4 - parse an IPv4 number in dotted-decimal notation

#include <libowfat/ip4.h>

int scan_ip4(const char *src,char ip[4]);

scan_ip4 parses an IPv4 number in dotted-decimal ASCII representation from src and writes the result into ip. It returns the number of bytes read from src or 0 if the parsing failed.

Unlike many other IP parsing routines, scan_ip4 does not recognize octal (like 0177.0.0.1) or hexadecimal numbers (like 0x7f000001).

#include <libowfat/str.h>
#include <libowfat/ip4.h>

char buf[]="160.45.40.10"; char ip[4]; if (scan_ip4(buf,ip) != str_len(buf)) parse_error();

fmt_ip4(3), scan_ip6(3), inet_pton(3)

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.