summaryrefslogtreecommitdiff
path: root/res/res_http_websocket.exports.in
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2012-06-02 21:13:36 +0000
committerJoshua Colp <jcolp@digium.com>2012-06-02 21:13:36 +0000
commit380c7c5c39b9a0879d90df99196c06d01a70dd92 (patch)
tree13c88e100b85d908c21861746dafe5c48cdc5994 /res/res_http_websocket.exports.in
parent91a20ee2f95e2eb8f080bb90568459659960d726 (diff)
Add res_http_websocket module which implements the WebSocket protocol according to RFC 6455.
Review: https://reviewboard.asterisk.org/r/1952/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@368359 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_http_websocket.exports.in')
-rw-r--r--res/res_http_websocket.exports.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/res/res_http_websocket.exports.in b/res/res_http_websocket.exports.in
new file mode 100644
index 000000000..ceb804011
--- /dev/null
+++ b/res/res_http_websocket.exports.in
@@ -0,0 +1,17 @@
+{
+ global:
+ LINKER_SYMBOL_PREFIXast_websocket_add_protocol;
+ LINKER_SYMBOL_PREFIXast_websocket_remove_protocol;
+ LINKER_SYMBOL_PREFIXast_websocket_read;
+ LINKER_SYMBOL_PREFIXast_websocket_write;
+ LINKER_SYMBOL_PREFIXast_websocket_close;
+ LINKER_SYMBOL_PREFIXast_websocket_reconstruct_enable;
+ LINKER_SYMBOL_PREFIXast_websocket_reconstruct_disable;
+ LINKER_SYMBOL_PREFIXast_websocket_ref;
+ LINKER_SYMBOL_PREFIXast_websocket_unref;
+ LINKER_SYMBOL_PREFIXast_websocket_fd;
+ LINKER_SYMBOL_PREFIXast_websocket_remote_address;
+ LINKER_SYMBOL_PREFIXast_websocket_is_secure;
+ local:
+ *;
+};