Skip to content

Commit 20ce61d

Browse files
committed
In TLS build of library, support both TLS and non-TLS connections.
The choice is made at runtime, if a TLS URI (https:// or wss://) is given, the TLS client will be used, otherwise the non-TLS client will be used. Additionally, a new constructor is introduced allowing the URI to be passed at construction, which allows the above selection to occur, otherwise only the default for the library (TLS or non-TLS) will be used (preserving the original behavior).
1 parent 725a8e0 commit 20ce61d

7 files changed

+290
-116
lines changed

API.md

+14
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,16 @@ Get current namespace name which the client is inside.
9191
#### Constructors
9292
`client()` default constructor.
9393

94+
`client(const std::string& uri)`
95+
96+
Constructor with URI. This form of the constructor will select automatically
97+
between TLS and non-TLS versions of the client if you are linking with the
98+
TLS build. To use TLS, provide a URI with the `https://` or `wss://` scheme,
99+
otherwise use 'http://' or 'ws://'. If an unsupported scheme is given, an
100+
exception will be thrown.
101+
102+
After constructing with this URI, you may call `connect()` with no arguments.
103+
94104
#### Connection Listeners
95105
`void set_open_listener(con_listener const& l)`
96106

@@ -130,6 +140,10 @@ Set listener for socket close event, called when any sockets being closed, after
130140
```
131141

132142
#### Connect and Close
143+
`void connect()`
144+
145+
Connect to socket.io server URI previously given to the constructor.
146+
133147
`void connect(const std::string& uri)`
134148

135149
Connect to socket.io server, e.g., `client.connect("ws://localhost:3000");`

0 commit comments

Comments
 (0)