BIO_s_socket.pod 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. =pod
  2. =head1 NAME
  3. BIO_s_socket, BIO_new_socket - socket BIO
  4. =head1 SYNOPSIS
  5. #include <openssl/bio.h>
  6. BIO_METHOD *BIO_s_socket(void);
  7. long BIO_set_fd(BIO *b, int fd, long close_flag);
  8. long BIO_get_fd(BIO *b, int *c);
  9. BIO *BIO_new_socket(int sock, int close_flag);
  10. =head1 DESCRIPTION
  11. BIO_s_socket() returns the socket BIO method. This is a wrapper
  12. round the platform's socket routines.
  13. BIO_read() and BIO_write() read or write the underlying socket.
  14. BIO_puts() is supported but BIO_gets() is not.
  15. If the close flag is set then the socket is shut down and closed
  16. when the BIO is freed.
  17. BIO_set_fd() sets the socket of BIO B<b> to B<fd> and the close
  18. flag to B<close_flag>.
  19. BIO_get_fd() places the socket in B<c> if it is not NULL, it also
  20. returns the socket. If B<c> is not NULL it should be of type (int *).
  21. BIO_new_socket() returns a socket BIO using B<sock> and B<close_flag>.
  22. =head1 NOTES
  23. Socket BIOs also support any relevant functionality of file descriptor
  24. BIOs.
  25. The reason for having separate file descriptor and socket BIOs is that on some
  26. platforms sockets are not file descriptors and use distinct I/O routines,
  27. Windows is one such platform. Any code mixing the two will not work on
  28. all platforms.
  29. BIO_set_fd() and BIO_get_fd() are macros.
  30. =head1 RETURN VALUES
  31. BIO_s_socket() returns the socket BIO method.
  32. BIO_set_fd() always returns 1.
  33. BIO_get_fd() returns the socket or -1 if the BIO has not been
  34. initialized.
  35. BIO_new_socket() returns the newly allocated BIO or NULL is an error
  36. occurred.
  37. =head1 SEE ALSO
  38. TBA