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 /libssh/poll.c | |
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 'libssh/poll.c')
-rw-r--r-- | libssh/poll.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libssh/poll.c b/libssh/poll.c index dc28b9b..67671a0 100644 --- a/libssh/poll.c +++ b/libssh/poll.c @@ -67,6 +67,10 @@ void ssh_poll_init(void) { return; } +void ssh_poll_cleanup(void) { + return; +} + int ssh_poll(ssh_pollfd_t *fds, nfds_t nfds, int timeout) { return poll((struct pollfd *) fds, nfds, timeout); } @@ -217,6 +221,14 @@ void ssh_poll_init(void) { } } +void ssh_poll_cleanup(void) { + win_poll = bsd_poll; + + FreeLibrary(hlib); + + hlib = NULL; +} + int ssh_poll(ssh_pollfd_t *fds, nfds_t nfds, int timeout) { return win_poll(fds, nfds, timeout); } |