| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2019-08-17 13:04:33 +02:00
										 |  |  | /*  wsl_server.cpp                                                       */ | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-01 11:16:22 +01:00
										 |  |  | /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef JAVASCRIPT_ENABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "wsl_server.h"
 | 
					
						
							|  |  |  | #include "core/os/os.h"
 | 
					
						
							|  |  |  | #include "core/project_settings.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 12:05:15 +02:00
										 |  |  | WSLServer::PendingPeer::PendingPeer() { | 
					
						
							| 
									
										
										
										
											2019-10-07 16:35:56 +02:00
										 |  |  | 	use_ssl = false; | 
					
						
							| 
									
										
										
										
											2019-07-03 12:05:15 +02:00
										 |  |  | 	time = 0; | 
					
						
							|  |  |  | 	has_request = false; | 
					
						
							|  |  |  | 	response_sent = 0; | 
					
						
							|  |  |  | 	req_pos = 0; | 
					
						
							|  |  |  | 	memset(req_buf, 0, sizeof(req_buf)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-08 20:13:24 +02:00
										 |  |  | bool WSLServer::PendingPeer::_parse_request(const Vector<String> p_protocols) { | 
					
						
							| 
									
										
										
										
											2019-07-03 12:05:15 +02:00
										 |  |  | 	Vector<String> psa = String((char *)req_buf).split("\r\n"); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 	int len = psa.size(); | 
					
						
							| 
									
										
										
										
											2019-08-11 10:49:53 +02:00
										 |  |  | 	ERR_FAIL_COND_V_MSG(len < 4, false, "Not enough response headers, got: " + itos(len) + ", expected >= 4."); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector<String> req = psa[0].split(" ", false); | 
					
						
							| 
									
										
										
										
											2019-08-11 10:49:53 +02:00
										 |  |  | 	ERR_FAIL_COND_V_MSG(req.size() < 2, false, "Invalid protocol or status code."); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 	// Wrong protocol
 | 
					
						
							| 
									
										
										
										
											2019-08-11 10:49:53 +02:00
										 |  |  | 	ERR_FAIL_COND_V_MSG(req[0] != "GET" || req[2] != "HTTP/1.1", false, "Invalid method or HTTP version."); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Map<String, String> headers; | 
					
						
							|  |  |  | 	for (int i = 1; i < len; i++) { | 
					
						
							|  |  |  | 		Vector<String> header = psa[i].split(":", false, 1); | 
					
						
							| 
									
										
										
										
											2019-08-11 10:49:53 +02:00
										 |  |  | 		ERR_FAIL_COND_V_MSG(header.size() != 2, false, "Invalid header -> " + psa[i]); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 		String name = header[0].to_lower(); | 
					
						
							|  |  |  | 		String value = header[1].strip_edges(); | 
					
						
							|  |  |  | 		if (headers.has(name)) | 
					
						
							|  |  |  | 			headers[name] += "," + value; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			headers[name] = value; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-08-17 13:04:33 +02:00
										 |  |  | #define _WSL_CHECK(NAME, VALUE)                                                         \
 | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V_MSG(!headers.has(NAME) || headers[NAME].to_lower() != VALUE, false, \ | 
					
						
							|  |  |  | 			"Missing or invalid header '" + String(NAME) + "'. Expected value '" + VALUE + "'."); | 
					
						
							|  |  |  | #define _WSL_CHECK_EX(NAME) \
 | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V_MSG(!headers.has(NAME), false, "Missing header '" + String(NAME) + "'."); | 
					
						
							|  |  |  | 	_WSL_CHECK("upgrade", "websocket"); | 
					
						
							|  |  |  | 	_WSL_CHECK("sec-websocket-version", "13"); | 
					
						
							|  |  |  | 	_WSL_CHECK_EX("sec-websocket-key"); | 
					
						
							|  |  |  | 	_WSL_CHECK_EX("connection"); | 
					
						
							|  |  |  | #undef _WSL_CHECK_EX
 | 
					
						
							|  |  |  | #undef _WSL_CHECK
 | 
					
						
							| 
									
										
										
										
											2019-07-08 07:33:36 +02:00
										 |  |  | 	key = headers["sec-websocket-key"]; | 
					
						
							|  |  |  | 	if (headers.has("sec-websocket-protocol")) { | 
					
						
							|  |  |  | 		Vector<String> protos = headers["sec-websocket-protocol"].split(","); | 
					
						
							|  |  |  | 		for (int i = 0; i < protos.size(); i++) { | 
					
						
							| 
									
										
										
										
											2019-10-11 19:46:29 +02:00
										 |  |  | 			String proto = protos[i].strip_edges(); | 
					
						
							| 
									
										
										
										
											2019-07-08 07:33:36 +02:00
										 |  |  | 			// Check if we have the given protocol
 | 
					
						
							|  |  |  | 			for (int j = 0; j < p_protocols.size(); j++) { | 
					
						
							| 
									
										
										
										
											2019-10-11 19:46:29 +02:00
										 |  |  | 				if (proto != p_protocols[j]) | 
					
						
							| 
									
										
										
										
											2019-07-08 07:33:36 +02:00
										 |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2019-10-11 19:46:29 +02:00
										 |  |  | 				protocol = proto; | 
					
						
							| 
									
										
										
										
											2019-07-08 07:33:36 +02:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			// Found a protocol
 | 
					
						
							|  |  |  | 			if (protocol != "") | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (protocol == "") // Invalid protocol(s) requested
 | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 	} else if (p_protocols.size() > 0) // No protocol requested, but we need one
 | 
					
						
							|  |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-08 20:13:24 +02:00
										 |  |  | Error WSLServer::PendingPeer::do_handshake(const Vector<String> p_protocols) { | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 	if (OS::get_singleton()->get_ticks_msec() - time > WSL_SERVER_TIMEOUT) | 
					
						
							|  |  |  | 		return ERR_TIMEOUT; | 
					
						
							| 
									
										
										
										
											2019-10-07 16:35:56 +02:00
										 |  |  | 	if (use_ssl) { | 
					
						
							|  |  |  | 		Ref<StreamPeerSSL> ssl = static_cast<Ref<StreamPeerSSL> >(connection); | 
					
						
							|  |  |  | 		if (ssl.is_null()) | 
					
						
							|  |  |  | 			return FAILED; | 
					
						
							|  |  |  | 		ssl->poll(); | 
					
						
							|  |  |  | 		if (ssl->get_status() == StreamPeerSSL::STATUS_HANDSHAKING) | 
					
						
							|  |  |  | 			return ERR_BUSY; | 
					
						
							|  |  |  | 		else if (ssl->get_status() != StreamPeerSSL::STATUS_CONNECTED) | 
					
						
							|  |  |  | 			return FAILED; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 	if (!has_request) { | 
					
						
							|  |  |  | 		int read = 0; | 
					
						
							|  |  |  | 		while (true) { | 
					
						
							| 
									
										
										
										
											2019-08-11 10:49:53 +02:00
										 |  |  | 			ERR_FAIL_COND_V_MSG(req_pos >= WSL_MAX_HEADER_SIZE, ERR_OUT_OF_MEMORY, "Response headers too big."); | 
					
						
							| 
									
										
										
										
											2019-07-03 12:05:15 +02:00
										 |  |  | 			Error err = connection->get_partial_data(&req_buf[req_pos], 1, read); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 			if (err != OK) // Got an error
 | 
					
						
							|  |  |  | 				return FAILED; | 
					
						
							|  |  |  | 			else if (read != 1) // Busy, wait next poll
 | 
					
						
							|  |  |  | 				return ERR_BUSY; | 
					
						
							| 
									
										
										
										
											2019-07-03 12:05:15 +02:00
										 |  |  | 			char *r = (char *)req_buf; | 
					
						
							|  |  |  | 			int l = req_pos; | 
					
						
							|  |  |  | 			if (l > 3 && r[l] == '\n' && r[l - 1] == '\r' && r[l - 2] == '\n' && r[l - 3] == '\r') { | 
					
						
							|  |  |  | 				r[l - 3] = '\0'; | 
					
						
							| 
									
										
										
										
											2019-07-08 07:33:36 +02:00
										 |  |  | 				if (!_parse_request(p_protocols)) { | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 					return FAILED; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-07-03 12:05:15 +02:00
										 |  |  | 				String s = "HTTP/1.1 101 Switching Protocols\r\n"; | 
					
						
							|  |  |  | 				s += "Upgrade: websocket\r\n"; | 
					
						
							|  |  |  | 				s += "Connection: Upgrade\r\n"; | 
					
						
							|  |  |  | 				s += "Sec-WebSocket-Accept: " + WSLPeer::compute_key_response(key) + "\r\n"; | 
					
						
							| 
									
										
										
										
											2019-07-08 07:33:36 +02:00
										 |  |  | 				if (protocol != "") | 
					
						
							|  |  |  | 					s += "Sec-WebSocket-Protocol: " + protocol + "\r\n"; | 
					
						
							| 
									
										
										
										
											2019-07-03 12:05:15 +02:00
										 |  |  | 				s += "\r\n"; | 
					
						
							|  |  |  | 				response = s.utf8(); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 				has_request = true; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-07-03 12:05:15 +02:00
										 |  |  | 			req_pos += 1; | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (has_request && response_sent < response.size() - 1) { | 
					
						
							|  |  |  | 		int sent = 0; | 
					
						
							|  |  |  | 		Error err = connection->put_partial_data((const uint8_t *)response.get_data() + response_sent, response.size() - response_sent - 1, sent); | 
					
						
							|  |  |  | 		if (err != OK) { | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		response_sent += sent; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (response_sent < response.size() - 1) | 
					
						
							|  |  |  | 		return ERR_BUSY; | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-08 20:13:24 +02:00
										 |  |  | Error WSLServer::listen(int p_port, const Vector<String> p_protocols, bool gd_mp_api) { | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 	ERR_FAIL_COND_V(is_listening(), ERR_ALREADY_IN_USE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_is_multiplayer = gd_mp_api; | 
					
						
							| 
									
										
										
										
											2019-10-11 19:46:29 +02:00
										 |  |  | 	// 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(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 	_server->listen(p_port); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void WSLServer::poll() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	List<int> remove_ids; | 
					
						
							|  |  |  | 	for (Map<int, Ref<WebSocketPeer> >::Element *E = _peer_map.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		Ref<WSLPeer> peer = (WSLPeer *)E->get().ptr(); | 
					
						
							|  |  |  | 		peer->poll(); | 
					
						
							|  |  |  | 		if (!peer->is_connected_to_host()) { | 
					
						
							|  |  |  | 			_on_disconnect(E->key(), peer->close_code != -1); | 
					
						
							|  |  |  | 			remove_ids.push_back(E->key()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for (List<int>::Element *E = remove_ids.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		_peer_map.erase(E->get()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	remove_ids.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	List<Ref<PendingPeer> > remove_peers; | 
					
						
							|  |  |  | 	for (List<Ref<PendingPeer> >::Element *E = _pending.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		Ref<PendingPeer> ppeer = E->get(); | 
					
						
							| 
									
										
										
										
											2019-07-08 07:33:36 +02:00
										 |  |  | 		Error err = ppeer->do_handshake(_protocols); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 		if (err == ERR_BUSY) { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} else if (err != OK) { | 
					
						
							|  |  |  | 			remove_peers.push_back(ppeer); | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// Creating new peer
 | 
					
						
							|  |  |  | 		int32_t id = _gen_unique_id(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		WSLPeer::PeerData *data = memnew(struct WSLPeer::PeerData); | 
					
						
							|  |  |  | 		data->obj = this; | 
					
						
							|  |  |  | 		data->conn = ppeer->connection; | 
					
						
							| 
									
										
										
										
											2019-10-04 12:58:06 +02:00
										 |  |  | 		data->tcp = ppeer->tcp; | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 		data->is_server = true; | 
					
						
							|  |  |  | 		data->id = id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<WSLPeer> ws_peer = memnew(WSLPeer); | 
					
						
							|  |  |  | 		ws_peer->make_context(data, _in_buf_size, _in_pkt_size, _out_buf_size, _out_pkt_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		_peer_map[id] = ws_peer; | 
					
						
							|  |  |  | 		remove_peers.push_back(ppeer); | 
					
						
							| 
									
										
										
										
											2019-07-08 07:33:36 +02:00
										 |  |  | 		_on_connect(id, ppeer->protocol); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	for (List<Ref<PendingPeer> >::Element *E = remove_peers.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		_pending.erase(E->get()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	remove_peers.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!_server->is_listening()) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (_server->is_connection_available()) { | 
					
						
							| 
									
										
										
										
											2019-10-04 12:58:06 +02:00
										 |  |  | 		Ref<StreamPeerTCP> conn = _server->take_connection(); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 		if (is_refusing_new_connections()) | 
					
						
							|  |  |  | 			continue; // Conn will go out-of-scope and be closed.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<PendingPeer> peer = memnew(PendingPeer); | 
					
						
							| 
									
										
										
										
											2019-10-07 16:35:56 +02:00
										 |  |  | 		if (private_key.is_valid() && ssl_cert.is_valid()) { | 
					
						
							|  |  |  | 			Ref<StreamPeerSSL> ssl = Ref<StreamPeerSSL>(StreamPeerSSL::create()); | 
					
						
							|  |  |  | 			ssl->set_blocking_handshake_enabled(false); | 
					
						
							|  |  |  | 			ssl->accept_stream(conn, private_key, ssl_cert, ca_chain); | 
					
						
							|  |  |  | 			peer->connection = ssl; | 
					
						
							|  |  |  | 			peer->use_ssl = true; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			peer->connection = conn; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-10-04 12:58:06 +02:00
										 |  |  | 		peer->tcp = conn; | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 		peer->time = OS::get_singleton()->get_ticks_msec(); | 
					
						
							|  |  |  | 		_pending.push_back(peer); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool WSLServer::is_listening() const { | 
					
						
							|  |  |  | 	return _server->is_listening(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int WSLServer::get_max_packet_size() const { | 
					
						
							|  |  |  | 	return (1 << _out_buf_size) - PROTO_SIZE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void WSLServer::stop() { | 
					
						
							|  |  |  | 	_server->stop(); | 
					
						
							|  |  |  | 	for (Map<int, Ref<WebSocketPeer> >::Element *E = _peer_map.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		Ref<WSLPeer> peer = (WSLPeer *)E->get().ptr(); | 
					
						
							|  |  |  | 		peer->close_now(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	_pending.clear(); | 
					
						
							|  |  |  | 	_peer_map.clear(); | 
					
						
							| 
									
										
										
										
											2019-10-08 20:13:24 +02:00
										 |  |  | 	_protocols.clear(); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool WSLServer::has_peer(int p_id) const { | 
					
						
							|  |  |  | 	return _peer_map.has(p_id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Ref<WebSocketPeer> WSLServer::get_peer(int p_id) const { | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(!has_peer(p_id), NULL); | 
					
						
							|  |  |  | 	return _peer_map[p_id]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | IP_Address WSLServer::get_peer_address(int p_peer_id) const { | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(!has_peer(p_peer_id), IP_Address()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return _peer_map[p_peer_id]->get_connected_host(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int WSLServer::get_peer_port(int p_peer_id) const { | 
					
						
							|  |  |  | 	ERR_FAIL_COND_V(!has_peer(p_peer_id), 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return _peer_map[p_peer_id]->get_connected_port(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void WSLServer::disconnect_peer(int p_peer_id, int p_code, String p_reason) { | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!has_peer(p_peer_id)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	get_peer(p_peer_id)->close(p_code, p_reason); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Error WSLServer::set_buffers(int p_in_buffer, int p_in_packets, int p_out_buffer, int p_out_packets) { | 
					
						
							| 
									
										
										
										
											2019-08-11 10:49:53 +02:00
										 |  |  | 	ERR_FAIL_COND_V_MSG(_server->is_listening(), FAILED, "Buffers sizes can only be set before listening or connecting."); | 
					
						
							| 
									
										
										
										
											2019-06-24 15:46:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_in_buf_size = nearest_shift(p_in_buffer - 1) + 10; | 
					
						
							|  |  |  | 	_in_pkt_size = nearest_shift(p_in_packets - 1); | 
					
						
							|  |  |  | 	_out_buf_size = nearest_shift(p_out_buffer - 1) + 10; | 
					
						
							|  |  |  | 	_out_pkt_size = nearest_shift(p_out_packets - 1); | 
					
						
							|  |  |  | 	return OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | WSLServer::WSLServer() { | 
					
						
							|  |  |  | 	_in_buf_size = nearest_shift((int)GLOBAL_GET(WSS_IN_BUF) - 1) + 10; | 
					
						
							|  |  |  | 	_in_pkt_size = nearest_shift((int)GLOBAL_GET(WSS_IN_PKT) - 1); | 
					
						
							|  |  |  | 	_out_buf_size = nearest_shift((int)GLOBAL_GET(WSS_OUT_BUF) - 1) + 10; | 
					
						
							|  |  |  | 	_out_pkt_size = nearest_shift((int)GLOBAL_GET(WSS_OUT_PKT) - 1); | 
					
						
							|  |  |  | 	_server.instance(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | WSLServer::~WSLServer() { | 
					
						
							|  |  |  | 	stop(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // JAVASCRIPT_ENABLED
 |