aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-websock.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-04-07 15:22:59 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-04-07 15:22:59 +0200
commit94014f46d4751492133f65b12f1dea1cfa36d021 (patch)
tree07ecd1b3825071c14e1b55c3beca044e8872a848 /src/afb-websock.h
parent8449480d29d2e03d9094ddce82557b251deb6567 (diff)
more simplification
Change-Id: Iab4a9c38054a3e85542893735916aa11031dc4ff Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-websock.h')
-rw-r--r--src/afb-websock.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/afb-websock.h b/src/afb-websock.h
index be349563..4f7ea912 100644
--- a/src/afb-websock.h
+++ b/src/afb-websock.h
@@ -15,7 +15,10 @@
* limitations under the License.
*/
-int afb_websock_check(struct afb_hreq *hreq, int *later);
-struct afb_websock *afb_websock_create(struct afb_hreq *hreq);
+struct afb_hreq;
+struct afb_websock;
+
+extern int afb_websock_check(struct afb_hreq *hreq, int *later);
+extern struct afb_websock *afb_websock_create(struct afb_hreq *hreq);