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