mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Trim protocol field from spaces in WS classes.
This commit is contained in:
parent
d75e0de729
commit
2bb3e358e0
2 changed files with 15 additions and 5 deletions
|
@ -181,8 +181,12 @@ Error WSLClient::connect_to_host(String p_host, String p_path, uint16_t p_port,
|
|||
_connection = _tcp;
|
||||
_use_ssl = p_ssl;
|
||||
_host = p_host;
|
||||
_protocols.clear();
|
||||
_protocols.append_array(p_protocols);
|
||||
// Strip edges from protocols.
|
||||
_protocols.resize(p_protocols.size());
|
||||
String *pw = _protocols.ptrw();
|
||||
for (int i = 0; i < p_protocols.size(); i++) {
|
||||
pw[i] = p_protocols[i].strip_edges();
|
||||
}
|
||||
|
||||
_key = WSLPeer::generate_key();
|
||||
// TODO custom extra headers (allow overriding this too?)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue