Searched refs:ipstr (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/usr.sbin/ppp/
H A Diplist.c44 char ipstr[16]; local
50 strncpy(ipstr, start, end-start);
51 ipstr[end-start] = '\0';
52 return inet_aton(ipstr, ip);
/freebsd-10.0-release/contrib/apr/network_io/unix/
H A Dsockaddr.c900 static apr_status_t parse_ip(apr_ipsubnet_t *ipsub, const char *ipstr, int network_allowed) argument
917 rc = apr_inet_pton(AF_INET6, ipstr, ipsub->sub);
931 rc = apr_inet_pton(AF_INET, ipstr, ipsub->sub);
938 return parse_network(ipsub, ipstr);
947 static int looks_like_ip(const char *ipstr) argument
949 if (strchr(ipstr, ':')) {
955 while ((*ipstr == '.') || apr_isdigit(*ipstr))
956 ipstr++;
957 return (*ipstr
[all...]
/freebsd-10.0-release/contrib/pf/authpf/
H A Dauthpf.c753 char *fdpath = NULL, *userstr = NULL, *ipstr = NULL; local
775 if (asprintf(&ipstr, "user_ip=%s", ip_src) == -1)
791 pargv[9] = ipstr;
837 free(ipstr);
/freebsd-10.0-release/contrib/apr/include/
H A Dapr_network_io.h734 * @param ipstr The input IP address string
739 const char *ipstr,

Completed in 73 milliseconds