diff options
author | Max Romanov <max.romanov@nginx.com> | 2019-08-20 16:32:05 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2019-08-20 16:32:05 +0300 |
commit | e291841b3379f8787a10ad4f91e4aeae2ae323a4 (patch) | |
tree | 49a2f4629e5b8d6cd48f7436d7eeba4c99905675 /src/nodejs/unit-http/websocket_frame.js | |
parent | e501c74ddceab86e48c031ca9b5e154f52dcdae0 (diff) | |
download | unit-e291841b3379f8787a10ad4f91e4aeae2ae323a4.tar.gz unit-e291841b3379f8787a10ad4f91e4aeae2ae323a4.tar.bz2 |
Node.js: introducing websocket support.
Diffstat (limited to 'src/nodejs/unit-http/websocket_frame.js')
-rw-r--r-- | src/nodejs/unit-http/websocket_frame.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nodejs/unit-http/websocket_frame.js b/src/nodejs/unit-http/websocket_frame.js new file mode 100644 index 00000000..9989937d --- /dev/null +++ b/src/nodejs/unit-http/websocket_frame.js @@ -0,0 +1,11 @@ + +/* + * Copyright (C) NGINX, Inc. + */ + +'use strict'; + +function WebSocketFrame() { +} + +module.exports = WebSocketFrame; |