HelenOS sources
udp_header_t 157 uspace/srv/net/udp/pdu.c udp_header_t *hdr;
udp_header_t 159 uspace/srv/net/udp/pdu.c hdr = (udp_header_t *)pdu->data;
udp_header_t 167 uspace/srv/net/udp/pdu.c udp_header_t *hdr;
udp_header_t 173 uspace/srv/net/udp/pdu.c if (pdu->data_size < sizeof(udp_header_t))
udp_header_t 176 uspace/srv/net/udp/pdu.c text = pdu->data + sizeof(udp_header_t);
udp_header_t 177 uspace/srv/net/udp/pdu.c text_size = pdu->data_size - sizeof(udp_header_t);
udp_header_t 179 uspace/srv/net/udp/pdu.c hdr = (udp_header_t *)pdu->data;
udp_header_t 191 uspace/srv/net/udp/pdu.c if (length < sizeof(udp_header_t) ||
udp_header_t 192 uspace/srv/net/udp/pdu.c length > sizeof(udp_header_t) + text_size)
udp_header_t 199 uspace/srv/net/udp/pdu.c nmsg->data_size = length - sizeof(udp_header_t);
udp_header_t 214 uspace/srv/net/udp/pdu.c udp_header_t *hdr;
udp_header_t 225 uspace/srv/net/udp/pdu.c npdu->data_size = sizeof(udp_header_t) + msg->data_size;
udp_header_t 232 uspace/srv/net/udp/pdu.c hdr = (udp_header_t *)npdu->data;
udp_header_t 238 uspace/srv/net/udp/pdu.c memcpy((uint8_t *)npdu->data + sizeof(udp_header_t), msg->data,
HelenOS homepage, sources at GitHub