协议特定的套接字创建和套接字选项信息
我正在尝试创建 sctp 套接字,然后使用 sctp_opt_info() 检索套接字选项信息。
我成功地创建了特定的套接字,但是在套接字选项检索时,我得到的值为 -1,表明出现了一些错误。该错误是由于 sctp_opt_info() 的参数无效所致。
有人可以指导我出了什么问题吗?为什么我在这次调用中得到 -1 而不是 0(成功指示器)
int socket_desc;
struct sockaddr_in sin[1];
unsigned int len;
int val1,val2;
char s[100];
struct sctp_rtoinfo {
sctp_assoc_t srto_assoc_id;
uint32_t srto_initial;
uint32_t srto_max;
uint32_t srto_min;
}rto;
socket_desc=socket(AF_INET, SOCK_STREAM, IPPROTO_SCTP);
if (socket_desc==-1)
printf("Socket Fail");
val1 = sctp_opt_info(socket_desc,IPPROTO_SCTP,SCTP_RTOINFO,&rto,&len);
printf("Erro : %d, \n", errno );
perror(s);
printf("Status opt info: %d\n",val1);
我得到的 val1 值为 -1,表明存在问题。 perror 表示 sctp_opt_info() 的参数无效。我的猜测是这个函数的第二个参数,但不确定。
任何帮助将不胜感激。
谢谢
I am trying to create a socket of sctp and then retrieve the socket options information, using sctp_opt_info().
I am successfully able to create the specific socket however on socket option retrieval I am getting the value as -1 indication some error. The error is because of invalid arguments of sctp_opt_info().
Can some one please guide me what is wrong. Why am I getting -1 for this call and not 0(success indicator)
int socket_desc;
struct sockaddr_in sin[1];
unsigned int len;
int val1,val2;
char s[100];
struct sctp_rtoinfo {
sctp_assoc_t srto_assoc_id;
uint32_t srto_initial;
uint32_t srto_max;
uint32_t srto_min;
}rto;
socket_desc=socket(AF_INET, SOCK_STREAM, IPPROTO_SCTP);
if (socket_desc==-1)
printf("Socket Fail");
val1 = sctp_opt_info(socket_desc,IPPROTO_SCTP,SCTP_RTOINFO,&rto,&len);
printf("Erro : %d, \n", errno );
perror(s);
printf("Status opt info: %d\n",val1);
I am getting the val1 value as -1 indicating some problem. The perror says invalid argument for sctp_opt_info(). My guess is argument two of this function , not sure though.
Any help will be appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
len
,sctp_opt_info()
的最后一个参数是值-结果参数。您至少必须将其初始化为您传入的参数的长度,len
, the last parameter tosctp_opt_info()
is a value-result parameter. You have to atleast initialize it to the length of the parameter you pass in,