Searched refs:ip (Results 151 - 175 of 918) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sbin/natd/
H A Dnatd.c26 #include <netinet/ip.h>
111 static char* FormatPacket (struct ip*);
112 static void PrintPacket (struct ip*);
113 static void SyslogPacket (struct ip*, int priority, const char *label);
520 struct ip* ip; local
552 ip = (struct ip*) buf;
560 switch (ip->ip_p) {
574 printf ("[%d] ", ip
646 struct ip* ip; local
831 PrintPacket(struct ip* ip) argument
836 SyslogPacket(struct ip* ip, int priority, const char *label) argument
841 FormatPacket(struct ip* ip) argument
1997 struct instance *ip; local
[all...]
/freebsd-10.0-release/contrib/openbsm/etc/
H A Daudit_event88 63:AUE_SEMSYS:semsys(2):ip
89 64:AUE_MSGSYS:msgsys(2):ip
90 65:AUE_SHMSYS:shmsys(2):ip
109 84:AUE_MSGCTL:msgctl(2) - illegal command:ip
110 85:AUE_MSGCTL_RMID:msgctl(2) - IPC_RMID command:ip
111 86:AUE_MSGCTL_SET:msgctl(2) - IPC_SET command:ip
112 87:AUE_MSGCTL_STAT:msgctl(2) - IPC_STAT command:ip
113 88:AUE_MSGGET:msgget(2):ip
114 89:AUE_MSGRCV:msgrcv(2):ip
115 90:AUE_MSGSND:msgsnd(2):ip
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dtst.ipv4localicmp.ksh30 # Test ip:::{send,receive} of IPv4 ICMP to a local address.
34 # 1. A change to the ip stack breaking expected probe behavior,
49 ip:::send
53 printf("1 ip:::send (");
60 ip:::receive
64 printf("2 ip:::receive (");
H A Dtst.ipv4remoteicmp.ksh30 # Test ip:::{send,receive} of IPv4 ICMP to a remote host.
34 # 1. A change to the ip stack breaking expected probe behavior,
60 ip:::send
64 printf("1 ip:::send (");
71 ip:::receive
75 printf("2 ip:::receive (");
H A Dtst.ipv6localicmp.ksh30 # Test ip:::{send,receive} of IPv6 ICMP to a local address. This creates a
35 # 1. A change to the ip stack breaking expected probe behavior,
59 ip:::send
63 printf("1 ip:::send (");
69 ip:::receive
73 printf("2 ip:::receive (");
H A Dtst.ipv6remoteicmp.ksh30 # Test ip:::{send,receive} of IPv6 ICMP to a remote host. This test is
36 # 1. A change to the ip stack breaking expected probe behavior,
69 ip:::send
73 printf("1 ip:::send (");
79 ip:::receive
83 printf("2 ip:::receive (");
/freebsd-10.0-release/contrib/gcc/
H A DFREEBSD-libiberty21 cp -ip ../libiberty/$F .
36 cp -ip ../include/$F .
/freebsd-10.0-release/contrib/tcp_wrappers/
H A Dfix_options.c21 #include <netinet/ip.h>
45 struct protoent *ip; local
67 if ((ip = getprotobyname("ip")) != 0)
68 ipproto = ip->p_proto;
/freebsd-10.0-release/contrib/unbound/compat/
H A Dgmtime_r.c54 const int * ip; local
93 ip = mon_lengths[yleap];
94 for (tmp->tm_mon = 0; days >= (long) ip[tmp->tm_mon]; ++(tmp->tm_mon))
95 days = days - (long) ip[tmp->tm_mon];
/freebsd-10.0-release/libexec/rtld-elf/arm/
H A Drtld_start.S76 * ip = &GOT[n+3]
82 sub r1, ip, lr /* r1 = 4 * (n + 1) */
87 mov r4, ip /* save GOT location */
92 mov ip, r0 /* save new address */
95 mov pc, ip /* jump to the new address */
/freebsd-10.0-release/sys/fs/ext2fs/
H A Dext2_dinode.h80 #define E2DI_HAS_XTIME(ip) (EXT2_HAS_RO_COMPAT_FEATURE(ip->i_e2fs, \
82 #define E2DI_HAS_HUGE_FILE(ip) (EXT2_HAS_RO_COMPAT_FEATURE(ip->i_e2fs, \
H A Dext2_inode.c74 struct inode *ip; local
79 ip = VTOI(vp);
80 if ((ip->i_flag & IN_MODIFIED) == 0 && waitfor == 0)
82 ip->i_flag &= ~(IN_LAZYACCESS | IN_LAZYMOD | IN_MODIFIED);
83 fs = ip->i_e2fs;
86 if ((error = bread(ip->i_devvp,
87 fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
92 ext2_i2ei(ip, (struct ext2fs_dinode *)((char *)bp->b_data +
93 EXT2_INODE_SIZE(fs) * ino_to_fsbo(fs, ip->i_number)));
349 * Release blocks associated with the inode ip an
359 ext2_indirtrunc(struct inode *ip, daddr_t lbn, daddr_t dbn, daddr_t lastbn, int level, e4fs_daddr_t *countp) argument
467 struct inode *ip = VTOI(vp); local
502 struct inode *ip; local
[all...]
/freebsd-10.0-release/sys/netipsec/
H A Dipsec_output.c53 #include <netinet/ip.h>
115 mtod(m, struct ip *)->ip_len = htons(m->m_pkthdr.len);
207 struct ip *ip = mtod(m, struct ip *); local
209 const int hlen = IP_VHL_HL(ip->ip_vhl);
211 const int hlen = (ip->ip_hl << 2);
245 ip->ip_len = htons(m->m_pkthdr.len);
246 ip->ip_p = IPPROTO_UDP;
304 struct ip *i local
430 struct ip *ip; local
[all...]
/freebsd-10.0-release/sys/netpfil/pf/
H A Din4_cksum.c72 #include <netinet/ip.h>
102 if (m->m_len < sizeof(struct ip))
107 u.ipov.ih_src = mtod(m, struct ip *)->ip_src;
108 u.ipov.ih_dst = mtod(m, struct ip *)->ip_dst;
/freebsd-10.0-release/sys/ufs/ufs/
H A Dufs_bmap.c113 struct inode *ip; local
125 ip = VTOI(vp);
149 *bnp = blkptrtodb(ump, DIP(ip, i_db[bn]));
151 *bnp = blkptrtodb(ump, ip->i_din2->di_extb[-1 - bn]);
169 if ((ip->i_flags & SF_SNAPSHOT) && DIP(ip, i_db[bn]) > 0 &&
170 DIP(ip, i_db[bn]) < ump->um_seqinc) {
173 if (ip->i_flags & SF_SNAPSHOT)
180 is_sequential(ump, DIP(ip, i_db[bn - 1]),
181 DIP(ip, i_d
[all...]
/freebsd-10.0-release/usr.sbin/ppp/
H A Diplist.h30 struct in_addr ip; member in struct:iplist_cur
/freebsd-10.0-release/sys/netinet/libalias/
H A Dalias.c131 #include <netinet/ip.h>
271 static int IcmpAliasIn1(struct libalias *, struct ip *);
272 static int IcmpAliasIn2(struct libalias *, struct ip *);
273 static int IcmpAliasIn(struct libalias *, struct ip *);
275 static int IcmpAliasOut1(struct libalias *, struct ip *, int create);
276 static int IcmpAliasOut2(struct libalias *, struct ip *);
277 static int IcmpAliasOut(struct libalias *, struct ip *, int create);
285 static int UdpAliasIn(struct libalias *, struct ip *);
286 static int UdpAliasOut(struct libalias *, struct ip *, int, int create);
288 static int TcpAliasIn(struct libalias *, struct ip *);
346 struct ip *ip; local
527 struct ip *ip; local
[all...]
/freebsd-10.0-release/etc/rc.d/
H A Dipfw48 elif [ "`ipfw list 65535`" = "65535 deny ip from any to any" ]; then
51 echo ' All ip services are disabled.'
58 sysctl net.inet.ip.fw.verbose=1 >/dev/null
80 if ! ${SYSCTL} net.inet.ip.fw.enable=1 1>/dev/null 2>&1; then
97 ${SYSCTL} net.inet.ip.fw.enable=0
/freebsd-10.0-release/lib/libstand/
H A Dbootparam.c390 int32_t *ip; local
402 ip = xi->addr;
408 *ip++ = htonl((unsigned int)*cp++);
409 *ip++ = htonl((unsigned int)*cp++);
410 *ip++ = htonl((unsigned int)*cp++);
411 *ip++ = htonl((unsigned int)*cp++);
423 int32_t *ip; local
439 ip = xi->addr;
445 *cp++ = ntohl(*ip++);
446 *cp++ = ntohl(*ip
[all...]
/freebsd-10.0-release/sys/ufs/ffs/
H A Dffs_alloc.c101 typedef ufs2_daddr_t allocfcn_t(struct inode *ip, u_int cg, ufs2_daddr_t bpref,
148 ffs_alloc(ip, lbn, bpref, size, flags, cred, bnp)
149 struct inode *ip;
167 fs = ip->i_fs;
168 ump = ip->i_ump;
173 devtoname(ip->i_dev), (long)fs->fs_bsize, size,
184 error = chkdq(ip, btodb(size), cred, 0);
197 cg = ino_to_cg(fs, ip->i_number);
200 bno = ffs_hashalloc(ip, cg, bpref, size, size, ffs_alloccg);
203 DIP_SET(ip, i_block
503 struct inode *ip; local
731 struct inode *ip; local
973 struct inode *ip; local
1905 getinobuf(struct inode *ip, u_int cg, u_int32_t cginoblk, int gbflags) argument
2381 struct inode *ip; local
2705 struct inode *ip, *dp; local
3090 struct inode *ip; local
[all...]
/freebsd-10.0-release/usr.sbin/makefs/ffs/
H A Dufs_bmap.c69 ufs_getlbns(struct inode *ip, daddr_t bn, struct indir *ap, int *nump) argument
77 lognindir = ffs(NINDIR(ip->i_fs)) - 1;
128 off = (bn >> lbc) & (NINDIR(ip->i_fs) - 1);
H A Dufs_bswap.h49 #define UFS_IPNEEDSWAP(ip) UFS_MPNEEDSWAP(ITOV(ip)->v_mount)
53 #define UFS_IPNEEDSWAP(ip) (0)
/freebsd-10.0-release/sys/dev/nxge/xgehal/
H A Dxgehal-device-fp.c698 __hal_lro_check_for_session_match(lro_t *lro, tcplro_t *tcp, iplro_t *ip) argument
702 if ((lro->ip_hdr->saddr != ip->saddr))
706 if ((lro->ip_hdr->daddr != ip->daddr))
722 * @ip: ip header.
727 __hal_tcp_seg_len(iplro_t *ip, tcplro_t *tcp) argument
731 ret = (xge_os_ntohs(ip->tot_len) -
732 ((ip->version_ihl & 0x0F)<<2) -
738 * __hal_ip_lro_capable: Finds whether ip is lro capable.
739 * @ip
743 __hal_ip_lro_capable(iplro_t *ip, xge_hal_dtr_info_t *ext_info) argument
779 __hal_tcp_lro_capable(iplro_t *ip, tcplro_t *tcp, lro_t *lro, int *ts_off) argument
895 __hal_lro_capable( u8 *buffer, iplro_t **ip, tcplro_t **tcp, xge_hal_dtr_info_t *ext_info) argument
974 __hal_open_lro_session(u8 *buffer, iplro_t *ip, tcplro_t *tcp, lro_t **lro, xge_hal_device_t *hldev, xge_hal_lro_desc_t *ring_lro, int slot, u32 tcp_seg_len, int ts_off) argument
1029 __hal_get_lro_session(u8 *eth_hdr, iplro_t *ip, tcplro_t *tcp, lro_t **lro, xge_hal_dtr_info_t *ext_info, xge_hal_device_t *hldev, xge_hal_lro_desc_t *ring_lro, lro_t **lro_end3 ) argument
1180 __hal_lro_under_optimal_thresh(iplro_t *ip, tcplro_t *tcp, lro_t *lro, xge_hal_device_t *hldev) argument
1213 __hal_collapse_ip_hdr( iplro_t *ip, tcplro_t *tcp, lro_t *lro, xge_hal_device_t *hldev) argument
1235 __hal_collapse_tcp_hdr( iplro_t *ip, tcplro_t *tcp, lro_t *lro, xge_hal_device_t *hldev) argument
1254 __hal_append_lro(iplro_t *ip, tcplro_t **tcp, u32 *seg_len, lro_t *lro, xge_hal_device_t *hldev) argument
1299 iplro_t *ip = (iplro_t *)ip_hdr; local
[all...]
/freebsd-10.0-release/usr.bin/netstat/
H A Dif.c563 struct iftot *iftot, *ip, *ipn, *total, *sum, *interesting; local
580 for (off = firstifnet, ip = iftot; off;) {
587 interesting = ip;
590 snprintf(ip->ift_name, sizeof(ip->ift_name), "(%s)", name);
596 SLIST_NEXT(ip, chain) = ipn;
597 ip = ipn;
634 ip = interesting;
640 show_stat("lu", 10, ifnet.if_ipackets - ip->ift_ip, 1);
641 show_stat("lu", 5, ifnet.if_ierrors - ip
[all...]
/freebsd-10.0-release/sys/fs/cd9660/
H A Dcd9660_vnops.c133 struct iso_node *ip = VTOI(vp); local
156 return (vaccess(vp->v_type, ip->inode.iso_mode, ip->inode.iso_uid,
157 ip->inode.iso_gid, ap->a_accmode, ap->a_cred, NULL));
171 struct iso_node *ip = VTOI(vp); local
176 vnode_create_vobject(vp, ip->i_size, ap->a_td);
192 struct iso_node *ip = VTOI(vp); local
194 vap->va_fsid = dev2udev(ip->i_mnt->im_dev);
195 vap->va_fileid = ip->i_number;
197 vap->va_mode = ip
254 struct iso_node *ip; local
298 struct iso_node *ip = VTOI(vp); local
661 ISONODE *ip; local
754 struct iso_node *ip; local
821 struct iso_node *ip = VTOI(ap->a_vp); local
[all...]

Completed in 288 milliseconds

1234567891011>>