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;
637 if (chunkLengthRemaining < sizeof(*init)) {
641 init=(const struct sctpInitiation*)bp;
642 ND_PRINT("[init tag: %u] ", GET_BE_U_4(init->initTag));
643 ND_PRINT("[rwnd: %u] ", GET_BE_U_4(init->rcvWindowCredit));
644 ND_PRINT("[OS: %u] ", GET_BE_U_2(init->NumPreopenStreams));
645 ND_PRINT("[MIS: %u] ", GET_BE_U_2(init->MaxInboundStreams));
646 ND_PRINT("[init TSN: %u] ", GET_BE_U_4(init->initialTSN));
647 bp += sizeof(*init);
648 sctpPacketLengthRemaining -= sizeof(*init);
649 chunkLengthRemaining -= sizeof(*init);
663 const struct sctpInitiation *init;
665 if (chunkLengthRemaining < sizeof(*init)) {
669 init=(const struct sctpInitiation*)bp;
670 ND_PRINT("[init tag: %u] ", GET_BE_U_4(init->initTag));
671 ND_PRINT("[rwnd: %u] ", GET_BE_U_4(init->rcvWindowCredit));
672 ND_PRINT("[OS: %u] ", GET_BE_U_2(init->NumPreopenStreams));
673 ND_PRINT("[MIS: %u] ", GET_BE_U_2(init->MaxInboundStreams));
674 ND_PRINT("[init TSN: %u] ", GET_BE_U_4(init->initialTSN));
675 bp += sizeof(*init);
676 sctpPacketLengthRemaining -= sizeof(*init);
677 chunkLengthRemaining -= sizeof(*init);