Commit 12c1c459 authored by Orvid King's avatar Orvid King Committed by Facebook Github Bot

Remove the file descriptor overload of OpenSSLUtils::setBioFd

Summary: It's no longer needed

Reviewed By: yfeldblum

Differential Revision: D13104830

fbshipit-source-id: 70e633d0a99740824e574e7976882648534bfa12
parent 0d9ae406
......@@ -126,9 +126,6 @@ class OpenSSLUtils {
static void* getBioAppData(BIO* b);
static NetworkSocket getBioFd(BIO* b);
static void setBioFd(BIO* b, NetworkSocket fd, int flags);
static void setBioFd(BIO* b, int fd, int flags) {
setBioFd(b, NetworkSocket::fromFd(fd), flags);
}
};
} // namespace ssl
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment