Skip to content
Snippets Groups Projects
Commit 32c3ce6f authored by hoelscher's avatar hoelscher
Browse files

Modify struct for sctp_info with ellipsis

parent 987cf592
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ struct expression {
struct msghdr_expr *msghdr;
struct pollfd_expr *pollfd;
#ifdef SCTP_RTOINFO
struct sctp_rtoinfo sctp_rtoinfo;
struct sctp_rtoinfo_expr sctp_rtoinfo;
#endif
#ifdef SCTP_INITMSG
struct sctp_initmsg sctp_initmsg;
......@@ -136,11 +136,19 @@ struct pollfd_expr {
struct expression *revents; /* returned events */
};
/* Handle the values for socketoption SO_Linger with inputtypes and values*/
/* Handle values for socketoption SO_Linger with inputtypes and values*/
struct linger_expr {
struct expression *l_onoff;
struct expression *l_linger;
};
/* Parse tree for syscall get/setsockopt for sctp_rtoinfo*/
#ifdef SCTP_RTOINFO
struct sctp_rtoinfo_expr {
struct expression *srto_initial;
struct expression *srto_max;
struct expression *srto_min;
};
#endif
/* The errno-related info from strace to summarize a system call error */
struct errno_spec {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment