Searched defs:igp (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/stand/lib/inet/
H A Dicmp4.c57 icmp4(struct inetgram *igp, struct ip *iphp, uint16_t iphlen, argument
73 icmphp = (struct icmp *)(igp->igm_mp->b_rptr + iphlen);
H A Dudp.c103 struct inetgram *igp, *ugp = NULL; local
110 while ((igp = sockets[index].inq) != NULL) {
111 if (igp->igm_level != TRANSPORT_LVL) {
114 index, igp->igm_level);
116 del_gram(&sockets[index].inq, igp, TRUE);
119 mp = igp->igm_mp;
128 if (udp_chksum(udphp, &igp->igm_saddr.sin_addr,
129 &igp->igm_target, sockets[index].proto) != 0) {
132 inet_ntoa(igp->igm_saddr.sin_addr));
133 del_gram(&sockets[index].inq, igp, TRU
[all...]
H A Dipv4.c250 * Load the assembled fragments into igp. Returns 0 for success, nonzero
254 frag_load(struct inetgram *igp) argument
267 mp = igp->igm_mp;
578 * Construct a transport datagram from a series of IP fragments (igp == NULL)
579 * or from a single IP datagram (igp != NULL). Return the address of the
583 make_trans_datagram(int index, struct inetgram *igp, struct in_addr ipsrc, argument
592 fragmented = (igp == NULL);
623 iph = (struct ip *)igp->igm_mp->b_rptr;
625 transp = (uint16_t *)(igp->igm_mp->b_rptr + iphlen);
656 bcopy((caddr_t)(igp
695 struct inetgram *igp, *newgp = NULL, *ipv4_listp = NULL; local
[all...]
/illumos-gate/usr/src/cmd/mailx/
H A Dcmd2.c613 register struct ignore *igp; local
625 if ((igp = (struct ignore *)
629 if ((igp->i_field = (char *)
633 strcpy(igp->i_field, field);
634 igp->i_link = retain[h];
635 retain[h] = igp;
648 struct ignore *igp; local
653 for (igp = retain[h]; igp != 0; igp
726 register struct ignore *igp; local
759 struct ignore *igp; local
[all...]
H A Daux.c740 register struct ignore *igp; local
742 for (igp = table[hash(realfield)]; igp != 0; igp = igp->i_link)
743 if (equal(igp->i_field, realfield))
/illumos-gate/usr/src/stand/lib/sock/
H A Dsocket.c1154 last_gram(struct inetgram *igp) argument
1157 for (wp = igp; wp != NULL; wp = wp->igm_next) {
1198 del_gram(struct inetgram **lgpp, struct inetgram *igp, int freeit) argument
1202 if (lgpp == NULL || igp == NULL)
1207 if (wp == igp) {
1213 igp->igm_next = NULL;
1216 if (igp->igm_mp != NULL)
1217 freeb(igp->igm_mp);
1218 bkmem_free((caddr_t)igp,

Completed in 67 milliseconds