协议特定的套接字创建和套接字选项信息

发布于 2024-10-08 19:37:33 字数 855 浏览 5 评论 0原文

我正在尝试创建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦行七里 2024-10-15 19:37:33

lensctp_opt_info() 的最后一个参数是值-结果参数。您至少必须将其初始化为您传入的参数的长度,

len = sizeof rto;

len, the last parameter to sctp_opt_info() is a value-result parameter. You have to atleast initialize it to the length of the parameter you pass in,

len = sizeof rto;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文