-/* State for TCP message send or receive */
-struct msg_priq {
- struct mbuf *msgq_head; /* first mbuf in the queue */
- struct mbuf *msgq_tail; /* last mbuf in the queue */
- struct mbuf *msgq_lastmsg; /* last message in the queue */
- u_int32_t msgq_flags; /* flags per priority queue */
-#define MSGQ_MSG_NOTDONE 0x1 /* set when EOR of a msg is not seen */
- u_int32_t msgq_bytes; /* data bytes in this queue */
-};
-
-struct msg_state {
- struct msg_priq msg_priq[MSG_PRI_COUNT]; /* priority queues */
- u_int32_t msg_serial_bytes; /* bytes moved to serial queue */
- u_int32_t msg_uno_bytes; /* out-of-order chars in rcv buffer */
-};
-
-/* mbuf flag used to indicate out of order data received */
-#define M_UNORDERED_DATA M_PROTO1
-