tls: fix container_of use for casting the ssl ustream to client state
authorFelix Fietkau <nbd@openwrt.org>
Mon, 15 Apr 2013 14:48:57 +0000 (16:48 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 15 Apr 2013 14:48:57 +0000 (16:48 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
tls.c

diff --git a/tls.c b/tls.c
index 39b3169..d969b82 100644 (file)
--- 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);
 }