Lines Matching refs:sctphdr
267 struct sctphdr *sh; in recv_function_raw()
372 sh = (struct sctphdr *)((caddr_t)iphdr + sizeof(struct ip)); in recv_function_raw()
373 ch = (struct sctp_chunkhdr *)((caddr_t)sh + sizeof(struct sctphdr)); in recv_function_raw()
374 offset = sizeof(struct ip) + sizeof(struct sctphdr); in recv_function_raw()
461 struct sctphdr *sh; in recv_function_raw6()
579 sh = mtod(recvmbuf6[0], struct sctphdr *); in recv_function_raw6()
580 ch = (struct sctp_chunkhdr *)((caddr_t)sh + sizeof(struct sctphdr)); in recv_function_raw6()
581 offset = sizeof(struct sctphdr); in recv_function_raw6()
637 struct sctphdr *sh; in recv_function_udp()
794 sh = mtod(udprecvmbuf[0], struct sctphdr *); in recv_function_udp()
795 ch = (struct sctp_chunkhdr *)((caddr_t)sh + sizeof(struct sctphdr)); in recv_function_udp()
796 offset = sizeof(struct sctphdr); in recv_function_udp()
844 struct sctphdr *sh; in recv_function_udp6()
981 sh = mtod(udprecvmbuf6[0], struct sctphdr *); in recv_function_udp6()
982 ch = (struct sctp_chunkhdr *)((caddr_t)sh + sizeof(struct sctphdr)); in recv_function_udp6()
983 offset = sizeof(struct sctphdr); in recv_function_udp6()
996 …P_DEBUG_USR, " - calling sctp_common_input_processing with off=%d\n", (int)sizeof(struct sctphdr)); in recv_function_udp6()