连接后我可以通过 SCTP 使用 bindx/SCTP_SOCKOPT_BINDX_ADD 吗?
使用 SCTP 时,在调用 bind() (但不是 bindx() / SCTP_SOCKOPT_BINDX_ADD)之后并且在调用 connect() 之后,我可以调用 bind() 或使用 SCTP_SOCKOPT_BINDX_ADD 吗?
例如,在连接之后,而不是在绑定之后和连接之前,我可以添加其他本地 IP 地址(用于多宿主)。
When using SCTP, after I have called bind() (but not bindx() / SCTP_SOCKOPT_BINDX_ADD) and after I have called connect(), can I then call bind() or use SCTP_SOCKOPT_BINDX_ADD?
E.g. -after- connecting, rather than after binding and before connecting, can I add additional local IP addresses (for multi-homing).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RFC 说道:
从连接的关联中添加和删除地址是一个
可选功能。不支持此功能的实现
功能应返回 -1 并将 errno 设置为 EOPNOTSUPP。
但在linux中,你可以在之后添加/rem额外的本地ip地址
已建立连接。
RFC said:
Adding and removing addresses from a connected association is an
optional functionality. Implementations that do not support this
functionality should return -1 and set errno to EOPNOTSUPP.
But in linux, you can add/rem additional local ip addr after
established connection.