Document updates from wiki.
[openssl.git] / doc / ssl / SSL_get_fd.pod
index 0ed21d5f15fcdfcdf583cb30db44d2892dbd3ab5..19e52d68d08c6b0846acfc7eb36f78aef0ae1f83 100644 (file)
@@ -2,15 +2,15 @@
 
 =head1 NAME
 
-SSL_get_fd - Get file descriptor linked to an SSL
+SSL_get_fd, SSL_get_rfd, SSL_get_wfd - get file descriptor linked to an SSL object
 
 =head1 SYNOPSIS
 
  #include <openssl/ssl.h>
 
- int SSL_get_fd(SSL *ssl);
- int SSL_get_rfd(SSL *ssl);
- int SSL_get_wfd(SSL *ssl);
+ int SSL_get_fd(const SSL *ssl);
+ int SSL_get_rfd(const SSL *ssl);
+ int SSL_get_wfd(const SSL *ssl);
 
 =head1 DESCRIPTION