Export the UDP encapsualation port and the path state.
This commit is contained in:
parent
49b836f2ea
commit
292efb1bc0
@ -506,6 +506,14 @@ sctp_sysctl_handle_assoclist(SYSCTL_HANDLER_ARGS)
|
||||
xraddr.rtt = net->rtt / 1000;
|
||||
xraddr.heartbeat_interval = net->heart_beat_delay;
|
||||
xraddr.ssthresh = net->ssthresh;
|
||||
xraddr.encaps_port = net->port;
|
||||
if (net->dest_state & SCTP_ADDR_UNCONFIRMED) {
|
||||
xraddr.state = SCTP_UNCONFIRMED;
|
||||
} else if (net->dest_state & SCTP_ADDR_REACHABLE) {
|
||||
xraddr.state = SCTP_ACTIVE;
|
||||
} else {
|
||||
xraddr.state = SCTP_INACTIVE;
|
||||
}
|
||||
xraddr.start_time.tv_sec = (uint32_t)net->start_time.tv_sec;
|
||||
xraddr.start_time.tv_usec = (uint32_t)net->start_time.tv_usec;
|
||||
SCTP_INP_RUNLOCK(inp);
|
||||
|
@ -1239,7 +1239,9 @@ struct xsctp_raddr {
|
||||
uint32_t rtt;
|
||||
uint32_t heartbeat_interval;
|
||||
uint32_t ssthresh;
|
||||
uint32_t extra_padding[30]; /* future */
|
||||
uint16_t encaps_port;
|
||||
uint16_t state;
|
||||
uint32_t extra_padding[29]; /* future */
|
||||
};
|
||||
|
||||
#define SCTP_MAX_LOGGING_SIZE 30000
|
||||
|
Loading…
Reference in New Issue
Block a user