(tls_stream_create)
(tls_stream_create_client): Changed prototype
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -27,9 +27,9 @@ extern "C" { | ... | @@ -27,9 +27,9 @@ extern "C" { |
27 | #endif | 27 | #endif |
28 | 28 | ||
29 | extern int tls_stream_create __P((stream_t *stream, | 29 | extern int tls_stream_create __P((stream_t *stream, |
30 | int in_fd, int out_fd, int flags)); | 30 | stream_t strin, stream_t strout, int flags)); |
31 | extern int tls_stream_create_client __P((stream_t *stream, | 31 | extern int tls_stream_create_client __P((stream_t *stream, |
32 | int in_fd, int out_fd, | 32 | stream_t strin, stream_t strout, |
33 | int flags)); | 33 | int flags)); |
34 | extern int tls_stream_create_client_from_tcp __P((stream_t *stream, | 34 | extern int tls_stream_create_client_from_tcp __P((stream_t *stream, |
35 | stream_t tcp_str, | 35 | stream_t tcp_str, | ... | ... |
-
Please register or sign in to post a comment