Expose _server and _pinfo members from AsyncWebSocketClient. (#242)

This commit is contained in:
Hermann Kraus
2017-11-06 14:55:58 +01:00
committed by Me No Dev
parent 64adf2972d
commit c8c1784395

View File

@ -154,6 +154,8 @@ class AsyncWebSocketClient {
uint32_t id(){ return _clientId; }
AwsClientStatus status(){ return _status; }
AsyncClient* client(){ return _client; }
AsyncWebSocket *server(){ return _server; }
AwsFrameInfo const &pinfo() const { return _pinfo; }
IPAddress remoteIP();
uint16_t remotePort();