Lines Matching refs:oc
1055 struct inetgram oc; in dgram_sendto() local
1074 bzero((caddr_t)&oc, sizeof (oc)); in dgram_sendto()
1077 oc.igm_level = TRANSPORT_LVL; in dgram_sendto()
1079 oc.igm_level = NETWORK_LVL; in dgram_sendto()
1080 oc.igm_oflags = flags; in dgram_sendto()
1083 bcopy((caddr_t)to, (caddr_t)&oc.igm_saddr, tolen); in dgram_sendto()
1085 bcopy((caddr_t)&sockets[i].remote, (caddr_t)&oc.igm_saddr, in dgram_sendto()
1091 ntohs(oc.igm_saddr.sin_port == 0)) { in dgram_sendto()
1092 ((struct sockaddr_in *)&oc.igm_saddr)->sin_port = in dgram_sendto()
1103 if ((oc.igm_mp = allocb(tlen + offset, 0)) == NULL) { in dgram_sendto()
1107 mp = oc.igm_mp; in dgram_sendto()
1113 if (sockets[i].output[l](i, &oc) < 0) { in dgram_sendto()