summaryrefslogtreecommitdiff
path: root/tls.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-04-15 16:48:57 +0200
committerFelix Fietkau <nbd@openwrt.org>2013-04-15 16:48:57 +0200
commit9d83bd3c524c4bbeb8e6583155dd7df9e8a1b5d3 (patch)
tree18e37a5df270630afc03c3fc59cb836e97563b74 /tls.c
parent9d0b3de603b0ed965c1ec40433b9bf89918f67b8 (diff)
downloaduhttpd2-9d83bd3c524c4bbeb8e6583155dd7df9e8a1b5d3.tar.gz
tls: fix container_of use for casting the ssl ustream to client state
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'tls.c')
-rw-r--r--tls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tls.c b/tls.c
index 39b3169..d969b82 100644
--- a/tls.c
+++ b/tls.c
@@ -68,14 +68,14 @@ int uh_tls_init(const char *key, const char *crt)
static void tls_ustream_read_cb(struct ustream *s, int bytes)
{
- struct client *cl = container_of(s, struct client, ssl);
+ struct client *cl = container_of(s, struct client, ssl.stream);
uh_client_read_cb(cl);
}
static void tls_ustream_write_cb(struct ustream *s, int bytes)
{
- struct client *cl = container_of(s, struct client, ssl);
+ struct client *cl = container_of(s, struct client, ssl.stream);
if (cl->dispatch.write_cb)
cl->dispatch.write_cb(cl);
@@ -83,7 +83,7 @@ static void tls_ustream_write_cb(struct ustream *s, int bytes)
static void tls_notify_state(struct ustream *s)
{
- struct client *cl = container_of(s, struct client, ssl);
+ struct client *cl = container_of(s, struct client, ssl.stream);
uh_client_notify_state(cl);
}