mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2026-01-27 09:12:18 +01:00
Fix const correctness of _sourceValid (#100)
This commit is contained in:
committed by
Me No Dev
parent
9bdf7c42b4
commit
ea7b76b0ee
@@ -154,7 +154,7 @@ class AsyncWebSocketControl {
|
||||
if(_data != NULL)
|
||||
free(_data);
|
||||
}
|
||||
virtual bool finished(){ return _finished; }
|
||||
virtual bool finished() const { return _finished; }
|
||||
uint8_t opcode(){ return _opcode; }
|
||||
uint8_t len(){ return _len + 2; }
|
||||
size_t send(AsyncClient *client){
|
||||
|
||||
Reference in New Issue
Block a user