├── .gitignore ├── license.txt ├── readme.md ├── src ├── WebSocketClient.xml └── web_socket_client │ ├── ByteUtil.brs │ ├── Logger.brs │ ├── TlsUtil.brs │ ├── WebSocketClient.brs │ └── WebSocketClientTask.brs ├── test ├── .gitignore ├── bright_web_socket.json.example ├── components │ ├── Main.xml │ ├── WebSocketClient.xml │ └── web_socket_client │ │ ├── ByteUtil.brs │ │ ├── Logger.brs │ │ ├── TlsUtil.brs │ │ ├── WebSocketClient.brs │ │ └── WebSocketClientTask.brs ├── images │ ├── icon_focus_hd.png │ ├── icon_focus_sd.png │ ├── icon_side_hd.png │ ├── icon_side_sd.png │ ├── splash_fhd.jpg │ ├── splash_hd.jpg │ └── splash_sd.jpg ├── locale │ └── en_US │ │ ├── manifest │ │ └── translations.xml ├── manifest └── source │ └── Main.brs └── util ├── .gitignore ├── bulk_send ├── package.json ├── readme.md └── websocket_bulk_send_server.js └── echo ├── package.json ├── readme.md └── websocket_echo_server.js /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/readme.md -------------------------------------------------------------------------------- /src/WebSocketClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/src/WebSocketClient.xml -------------------------------------------------------------------------------- /src/web_socket_client/ByteUtil.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/src/web_socket_client/ByteUtil.brs -------------------------------------------------------------------------------- /src/web_socket_client/Logger.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/src/web_socket_client/Logger.brs -------------------------------------------------------------------------------- /src/web_socket_client/TlsUtil.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/src/web_socket_client/TlsUtil.brs -------------------------------------------------------------------------------- /src/web_socket_client/WebSocketClient.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/src/web_socket_client/WebSocketClient.brs -------------------------------------------------------------------------------- /src/web_socket_client/WebSocketClientTask.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/src/web_socket_client/WebSocketClientTask.brs -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | .buildpath 3 | .project 4 | bright_web_socket.json 5 | -------------------------------------------------------------------------------- /test/bright_web_socket.json.example: -------------------------------------------------------------------------------- 1 | { 2 | "log_level": "FATAL/WARN/INFO/DEBUG/EXTRA/VERBOSE" 3 | } 4 | -------------------------------------------------------------------------------- /test/components/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/components/Main.xml -------------------------------------------------------------------------------- /test/components/WebSocketClient.xml: -------------------------------------------------------------------------------- 1 | ../../src/WebSocketClient.xml -------------------------------------------------------------------------------- /test/components/web_socket_client/ByteUtil.brs: -------------------------------------------------------------------------------- 1 | ../../../src/web_socket_client/ByteUtil.brs -------------------------------------------------------------------------------- /test/components/web_socket_client/Logger.brs: -------------------------------------------------------------------------------- 1 | ../../../src/web_socket_client/Logger.brs -------------------------------------------------------------------------------- /test/components/web_socket_client/TlsUtil.brs: -------------------------------------------------------------------------------- 1 | ../../../src/web_socket_client/TlsUtil.brs -------------------------------------------------------------------------------- /test/components/web_socket_client/WebSocketClient.brs: -------------------------------------------------------------------------------- 1 | ../../../src/web_socket_client/WebSocketClient.brs -------------------------------------------------------------------------------- /test/components/web_socket_client/WebSocketClientTask.brs: -------------------------------------------------------------------------------- 1 | ../../../src/web_socket_client/WebSocketClientTask.brs -------------------------------------------------------------------------------- /test/images/icon_focus_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/images/icon_focus_hd.png -------------------------------------------------------------------------------- /test/images/icon_focus_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/images/icon_focus_sd.png -------------------------------------------------------------------------------- /test/images/icon_side_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/images/icon_side_hd.png -------------------------------------------------------------------------------- /test/images/icon_side_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/images/icon_side_sd.png -------------------------------------------------------------------------------- /test/images/splash_fhd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/images/splash_fhd.jpg -------------------------------------------------------------------------------- /test/images/splash_hd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/images/splash_hd.jpg -------------------------------------------------------------------------------- /test/images/splash_sd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/images/splash_sd.jpg -------------------------------------------------------------------------------- /test/locale/en_US/manifest: -------------------------------------------------------------------------------- 1 | title=BrightWebSocket 2 | -------------------------------------------------------------------------------- /test/locale/en_US/translations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/locale/en_US/translations.xml -------------------------------------------------------------------------------- /test/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/manifest -------------------------------------------------------------------------------- /test/source/Main.brs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/test/source/Main.brs -------------------------------------------------------------------------------- /util/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /util/bulk_send/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/util/bulk_send/package.json -------------------------------------------------------------------------------- /util/bulk_send/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/util/bulk_send/readme.md -------------------------------------------------------------------------------- /util/bulk_send/websocket_bulk_send_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/util/bulk_send/websocket_bulk_send_server.js -------------------------------------------------------------------------------- /util/echo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/util/echo/package.json -------------------------------------------------------------------------------- /util/echo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/util/echo/readme.md -------------------------------------------------------------------------------- /util/echo/websocket_echo_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuitestAutomation/BrightWebSocket/HEAD/util/echo/websocket_echo_server.js --------------------------------------------------------------------------------