1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

send not needed to be public

This commit is contained in:
John Doe
2015-07-05 19:15:13 +03:00
committed by Ivan Grokhotkov
parent e34ae2d6f1
commit de70454a2a
3 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,6 @@ class SSDPClass{
void begin();
uint8_t update();
void send(ssdp_method_t method);
void schema(WiFiClient client);
void setName(char *name);
@ -78,6 +77,8 @@ class SSDPClass{
char *_modelName;
char *_modelURL;
char *_modelNumber;
void _send(ssdp_method_t method);
};
extern SSDPClass SSDP;