Lines Matching refs:oc
1056 struct inetgram oc; in dgram_sendto() local
1075 bzero((caddr_t)&oc, sizeof (oc)); in dgram_sendto()
1078 oc.igm_level = TRANSPORT_LVL; in dgram_sendto()
1080 oc.igm_level = NETWORK_LVL; in dgram_sendto()
1081 oc.igm_oflags = flags; in dgram_sendto()
1084 bcopy((caddr_t)to, (caddr_t)&oc.igm_saddr, tolen); in dgram_sendto()
1086 bcopy((caddr_t)&sockets[i].remote, (caddr_t)&oc.igm_saddr, in dgram_sendto()
1092 ntohs(oc.igm_saddr.sin_port == 0)) { in dgram_sendto()
1093 ((struct sockaddr_in *)&oc.igm_saddr)->sin_port = in dgram_sendto()
1104 if ((oc.igm_mp = allocb(tlen + offset, 0)) == NULL) { in dgram_sendto()
1108 mp = oc.igm_mp; in dgram_sendto()
1114 if (sockets[i].output[l](i, &oc) < 0) { in dgram_sendto()