Lines Matching full:init

117 	{ SCTP_INITIATION,        "INIT"              },
118 { SCTP_INITIATION_ACK, "INIT ACK" },
191 /* Sctp association init request/ack */
193 /* this is used for init ack, too */
274 * we must carry the init tag in the common header. Just the
635 const struct sctpInitiation *init; in sctp_print() local
637 if (chunkLengthRemaining < sizeof(*init)) { in sctp_print()
641 init=(const struct sctpInitiation*)bp; in sctp_print()
642 ND_PRINT("[init tag: %u] ", GET_BE_U_4(init->initTag)); in sctp_print()
643 ND_PRINT("[rwnd: %u] ", GET_BE_U_4(init->rcvWindowCredit)); in sctp_print()
644 ND_PRINT("[OS: %u] ", GET_BE_U_2(init->NumPreopenStreams)); in sctp_print()
645 ND_PRINT("[MIS: %u] ", GET_BE_U_2(init->MaxInboundStreams)); in sctp_print()
646 ND_PRINT("[init TSN: %u] ", GET_BE_U_4(init->initialTSN)); in sctp_print()
647 bp += sizeof(*init); in sctp_print()
648 sctpPacketLengthRemaining -= sizeof(*init); in sctp_print()
649 chunkLengthRemaining -= sizeof(*init); in sctp_print()
663 const struct sctpInitiation *init; in sctp_print() local
665 if (chunkLengthRemaining < sizeof(*init)) { in sctp_print()
669 init=(const struct sctpInitiation*)bp; in sctp_print()
670 ND_PRINT("[init tag: %u] ", GET_BE_U_4(init->initTag)); in sctp_print()
671 ND_PRINT("[rwnd: %u] ", GET_BE_U_4(init->rcvWindowCredit)); in sctp_print()
672 ND_PRINT("[OS: %u] ", GET_BE_U_2(init->NumPreopenStreams)); in sctp_print()
673 ND_PRINT("[MIS: %u] ", GET_BE_U_2(init->MaxInboundStreams)); in sctp_print()
674 ND_PRINT("[init TSN: %u] ", GET_BE_U_4(init->initialTSN)); in sctp_print()
675 bp += sizeof(*init); in sctp_print()
676 sctpPacketLengthRemaining -= sizeof(*init); in sctp_print()
677 chunkLengthRemaining -= sizeof(*init); in sctp_print()