Fri, 16 Dec 2005 18:37:08 +0000
[gaim-migrate @ 14814]
I hate autotools
| 11118 | 1 | #include "module.h" |
| 2 | ||
| 3 | /* TODO | |
| 4 | ||
| 5 | ||
| 6 | Gaim::Ssl::Connection | |
| 7 | gaim_ssl_connect(account, host, port, func, error_func, data) | |
| 8 | Gaim::Account account | |
| 9 | const char *host | |
| 10 | int port | |
| 11 | GaimSslInputFunction func | |
| 12 | GaimSslErrorFunction error_func | |
| 13 | ||
| 14 | void | |
| 15 | gaim_ssl_input_add(gsc, func, data) | |
| 16 | Gaim::Ssl::Connection gsc | |
| 17 | Gaim::SslInputFunction func | |
| 18 | ||
| 19 | ||
| 20 | ||
| 21 | Gaim::Ssl::Connection | |
| 22 | gaim_ssl_connect_fd(account, fd, func, error_func, data) | |
| 23 | Gaim::Account account | |
| 24 | int fd | |
| 25 | GaimSslInputFunction func | |
| 26 | GaimSslErrorFunction error_func | |
| 27 | ||
| 28 | ||
| 29 | ||
| 30 | */ | |
| 31 | ||
| 32 | MODULE = Gaim::SSL PACKAGE = Gaim::SSL PREFIX = gaim_ssl_ | |
| 33 | PROTOTYPES: ENABLE | |
| 34 | ||
| 35 | ||
| 36 | ||
| 37 | void | |
| 38 | gaim_ssl_close(gsc) | |
| 39 | Gaim::Ssl::Connection gsc | |
| 40 | ||
| 41 | ||
| 42 | ||
| 43 | Gaim::Ssl::Ops | |
| 44 | gaim_ssl_get_ops() | |
| 45 | ||
| 46 | ||
| 47 | void | |
| 48 | gaim_ssl_init() | |
| 49 | ||
| 50 | ||
| 51 | ||
| 52 | gboolean | |
| 53 | gaim_ssl_is_supported() | |
| 54 | ||
| 55 | ||
| 56 | size_t | |
| 57 | gaim_ssl_read(gsc, buffer, len) | |
| 58 | Gaim::Ssl::Connection gsc | |
| 59 | void * buffer | |
| 60 | size_t len | |
| 61 | ||
| 62 | void | |
| 63 | gaim_ssl_set_ops(ops) | |
| 64 | Gaim::Ssl::Ops ops | |
| 65 | ||
| 66 | void | |
| 67 | gaim_ssl_uninit() | |
| 68 | ||
| 69 | ||
| 70 | size_t | |
| 71 | gaim_ssl_write(gsc, buffer, len) | |
| 72 | Gaim::Ssl::Connection gsc | |
| 73 | void * buffer | |
| 74 | size_t len | |
| 75 |