diff options
| author | Andreas Schneider <mail@cynapses.org> | 2010-05-17 11:19:31 +0200 |
|---|---|---|
| committer | Andreas Schneider <mail@cynapses.org> | 2010-05-17 11:19:31 +0200 |
| commit | 488e822c8d242760f3f47e10d7f071edee65923f (patch) | |
| tree | 25569716b98d2c4c101c48ad900edb8458a4738a /include/libssh | |
| parent | 2234c115f25ccf606d28981711bc75871fbd2505 (diff) | |
| download | libssh-488e822c8d242760f3f47e10d7f071edee65923f.tar.gz libssh-488e822c8d242760f3f47e10d7f071edee65923f.tar.xz libssh-488e822c8d242760f3f47e10d7f071edee65923f.zip | |
poll: Added a cleanup function to free the ws2_32 library.
Diffstat (limited to 'include/libssh')
| -rw-r--r-- | include/libssh/poll.h | 1 | ||||
| -rw-r--r-- | include/libssh/socket.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/libssh/poll.h b/include/libssh/poll.h index 81891a13..e60d7664 100644 --- a/include/libssh/poll.h +++ b/include/libssh/poll.h @@ -77,6 +77,7 @@ typedef unsigned long int nfds_t; #endif /* HAVE_POLL */ void ssh_poll_init(void); +void ssh_poll_cleanup(void); int ssh_poll(ssh_pollfd_t *fds, nfds_t nfds, int timeout); typedef struct ssh_poll_ctx_struct *ssh_poll_ctx; typedef struct ssh_poll_handle_struct *ssh_poll_handle; diff --git a/include/libssh/socket.h b/include/libssh/socket.h index 9a2ee20d..ad838ac9 100644 --- a/include/libssh/socket.h +++ b/include/libssh/socket.h @@ -30,6 +30,7 @@ struct ssh_socket_struct; typedef struct ssh_socket_struct* ssh_socket; int ssh_socket_init(void); +void ssh_socket_cleanup(void); ssh_socket ssh_socket_new(ssh_session session); void ssh_socket_free(ssh_socket s); void ssh_socket_set_fd(ssh_socket s, socket_t fd); |
