如何使用 OpenSSL api 重用绑定端口?
我正在用 OpenSSL API 编写一个服务器。我想重用已在使用的端口。
我可以在套接字编程中通过在调用
setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes));
之前
bind(sockfd, ...);
调用来做到这一点但是如何在OpenSSL编程中重用端口?
我用来
bio = BIO_new_ssl(ctx, 0);
BIO_get_ssl(bio, &ssl);
SSL_set_mode(ssl, SSL_MODE_AUTO_RETRY);
abio = BIO_new_accept(server_port);
BIO_set_accept_bios(abio, bio);
BIO_do_accept(abio)
设置我的 OpenSSL 服务器连接。
是否有诸如 setsockopt()
之类的函数可以使 BIO *
重用端口?
谢谢你!
I'm writing a Server with OpenSSL API. I want to reuse the port that is already in use.
I can do so in socket programming by calling
setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes));
before I call
bind(sockfd, ...);
But how to reuse the port in OpenSSL programming?
I use
bio = BIO_new_ssl(ctx, 0);
BIO_get_ssl(bio, &ssl);
SSL_set_mode(ssl, SSL_MODE_AUTO_RETRY);
abio = BIO_new_accept(server_port);
BIO_set_accept_bios(abio, bio);
BIO_do_accept(abio)
to setup my OpenSSL Server connection.
Are there any functions such as setsockopt()
can make a BIO *
reuse the port?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
BIO_set_bind_mode
:You can use
BIO_set_bind_mode
: