How can you retrieve furhter information (like RTO, MTU and SRTT) from a struct sctp_rcvinfo
of a received SCTP message?
Everytime a SCTP-message is reveived and processed via a callback function like
static int
receive_cb(struct socket *sock, union sctp_sockstore addr, void *data,
size_t datalen, struct sctp_rcvinfo rcv, int flags, void *ulp_info)
{...
struct sctp_rcvinfo
is filled with these additional information (I suppose).
You can find an example-client here.
But I need to convert this to data like
struct sctp_paddrinfo moreInfo; moreInfo.spinfo_rto
.. and so on.
How can you achive this?