diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-07-18 14:18:31 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-07-18 14:18:31 +0000 |
commit | 6576d110d2ce6e01dce282cc64b2aea6521814a9 (patch) | |
tree | 628f71deac8a5f6afa3413da4928f1f231fbabe6 /package/uhttpd/src/uhttpd.h | |
parent | 75d2ba7a5cc6c4aa8b4b67d56f9cd650d0387be2 (diff) | |
download | upstream-6576d110d2ce6e01dce282cc64b2aea6521814a9.tar.gz upstream-6576d110d2ce6e01dce282cc64b2aea6521814a9.tar.bz2 upstream-6576d110d2ce6e01dce282cc64b2aea6521814a9.zip |
uhttpd: support building against openssl instead of cyassl, minor cleanups (#7827)
SVN-Revision: 27686
Diffstat (limited to 'package/uhttpd/src/uhttpd.h')
-rw-r--r-- | package/uhttpd/src/uhttpd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/uhttpd/src/uhttpd.h b/package/uhttpd/src/uhttpd.h index ff058d62bf..993bf93af1 100644 --- a/package/uhttpd/src/uhttpd.h +++ b/package/uhttpd/src/uhttpd.h @@ -98,7 +98,7 @@ struct config { int (*tls_cert) (SSL_CTX *c, const char *file); int (*tls_key) (SSL_CTX *c, const char *file); void (*tls_free) (struct listener *l); - void (*tls_accept) (struct client *c); + int (*tls_accept) (struct client *c); void (*tls_close) (struct client *c); int (*tls_recv) (struct client *c, void *buf, int len); int (*tls_send) (struct client *c, void *buf, int len); @@ -159,4 +159,3 @@ struct interpreter { #endif #endif - |