sctp_bindx(Solaris sctp 库)始终返回"Invalid argument"



我正在Solaris OS上编写一个SCTP测试程序,并使用Solaris本地SCTP堆栈。程序是这样的:

if ((fd = socket(AF_INET, SOCK_SEQPACKET, IPPROTO_SCTP)) < 0) {
    perror("socket");
}  
addr.sin_family = AF_INET;
addr.sin_port = htons(9004);
addr.sin_addr.s_addr = inet_addr("192.168.23.117");
if (sctp_bindx(fd, (struct sockaddr*)&addr, sizeof(struct sockaddr_in), SCTP_BINDX_ADD_ADDR) < 0) {
    perror("bind");
}  

运行程序时,总是返回错误:"Invalid argument"。我用gdb检查了一下,发现地址结构是正确的。
因为Solaris不是开源的,所以我只能使用gdb检查汇编代码,并发现sctp_bindx调用setsockopt函数,而setsockopt函数返回错误。调用setsockopt像这样:

setsockopt(fd, SOL_SCTP, SCTP_ADD_ADDR, addrs, addrs_size);  

我检查了所有的参数,发现它们是正确的。所以我不能找出这个问题的原因。有人能帮我吗?提前感谢!

你需要先调用bind

从oracle文档sctp_bindx

An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate 
additional addresses with an endpoint **after calling the bind() function**.

相关内容

  • 没有找到相关文章

最新更新