8000 change private to protected (see #10) · robokoding/arduinoWebSockets@ad1e609 · GitHub
[go: up one dir, main page]

Skip to content

Commit ad1e609

Browse files
committed
change private to protected (see Links2004#10)
1 parent 0318549 commit ad1e609

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/WebSocketsClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class WebSocketsClient: private WebSockets {
6565

6666
void disconnect(void);
6767

68-
private:
68+
protected:
6969
String _host;
7070
uint16_t _port;
7171

src/WebSocketsServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class WebSocketsServer: private WebSockets {
8181

8282
IPAddress remoteIP(uint8_t num);
8383

84-
private:
84+
protected:
8585
uint16_t _port;
8686

8787
#ifdef ESP8266

0 commit comments

Comments
 (0)
0