HomeSort by: relevance | last modified time | path
    Searched refs:ipsrc (Results 1 - 4 of 4) sorted by relevancy

  /src/dist/pf/usr.sbin/authpf/
authpf.c 61 char ipsrc[256]; /* ip as a string */ variable in typeref:typename:char[256]
105 if (strlcpy(ipsrc, cp, sizeof(ipsrc)) >= sizeof(ipsrc)) {
109 cp = strchr(ipsrc, ' ');
111 syslog(LOG_ERR, "corrupt SSH_CLIENT variable %s", ipsrc);
115 if (inet_pton(AF_INET, ipsrc, &ina) != 1 &&
116 inet_pton(AF_INET6, ipsrc, &ina) != 1) {
118 "cannot determine IP from SSH_CLIENT %s", ipsrc);
176 n = snprintf(pidfile, sizeof(pidfile), "%s/%s", PATH_PIDFILE, ipsrc);
    [all...]
  /src/usr.sbin/npf/npftest/libnpftest/
npf_mbuf_subr.c 270 void *p, *ipsrc, *ipdst; local in function:mbuf_get_pkt
276 ipsrc = &ip6->ip6_src;
283 ipsrc = &ip->ip_src.s_addr;
287 npf_inet_pton(af, src, ipsrc);
  /src/sys/dev/ic/
wi_ieee.h 162 int ipsrc; /* ip address associated with packet */ member in struct:wi_sigcache
  /src/sys/netinet/
ip_output.c 1048 * Copy options from ipsrc to ipdst, omitting those not copied during
1052 ip_optcopy(struct ip *ipsrc, struct ip *ipdst)
1057 cp = (u_char *)(ipsrc + 1);
1059 cnt = (ipsrc->ip_hl << 2) - sizeof(struct ip);

Completed in 98 milliseconds