mirror of
				https://github.com/esp8266/Arduino.git
				synced 2025-10-30 04:26:50 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			120 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| ESP8266 Simple Service Discovery
 | |
| Copyright (c) 2015 Hristo Gochkov
 | |
| 
 | |
| Original (Arduino) version by Filippo Sallemi, July 23, 2014.
 | |
| Can be found at: https://github.com/nomadnt/uSSDP
 | |
| 
 | |
| License (MIT license):
 | |
|   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 ESP8266SSDP_H
 | |
| #define ESP8266SSDP_H
 | |
| 
 | |
| #include <Arduino.h>
 | |
| #include <ESP8266WiFi.h>
 | |
| #include <WiFiUdp.h>
 | |
| 
 | |
| class UdpContext;
 | |
| 
 | |
| #define SSDP_UUID_SIZE              37
 | |
| #define SSDP_SCHEMA_URL_SIZE        64
 | |
| #define SSDP_FRIENDLY_NAME_SIZE     64
 | |
| #define SSDP_SERIAL_NUMBER_SIZE     32
 | |
| #define SSDP_PRESENTATION_URL_SIZE  128
 | |
| #define SSDP_MODEL_NAME_SIZE        64
 | |
| #define SSDP_MODEL_URL_SIZE         128
 | |
| #define SSDP_MODEL_VERSION_SIZE     32
 | |
| #define SSDP_MANUFACTURER_SIZE      64
 | |
| #define SSDP_MANUFACTURER_URL_SIZE  128
 | |
| 
 | |
| typedef enum {
 | |
|   NONE,
 | |
|   SEARCH,
 | |
|   NOTIFY
 | |
| } ssdp_method_t;
 | |
| 
 | |
| 
 | |
| struct SSDPTimer;
 | |
| 
 | |
| class SSDPClass{
 | |
|   public:
 | |
|     SSDPClass();
 | |
|     ~SSDPClass();
 | |
| 
 | |
|     bool begin();
 | |
| 
 | |
|     void schema(WiFiClient client);
 | |
| 
 | |
|     void setName(const String& name) { setName(name.c_str()); }
 | |
|     void setName(const char *name);
 | |
|     void setURL(const String& url) { setURL(url.c_str()); }
 | |
|     void setURL(const char *url);
 | |
|     void setSchemaURL(const String& url) { setSchemaURL(url.c_str()); }
 | |
|     void setSchemaURL(const char *url);
 | |
|     void setSerialNumber(const String& serialNumber) { setSerialNumber(serialNumber.c_str()); }
 | |
|     void setSerialNumber(const char *serialNumber);
 | |
|     void setModelName(const String& name) { setModelName(name.c_str()); }
 | |
|     void setModelName(const char *name);
 | |
|     void setModelNumber(const String& num) { setModelNumber(num.c_str()); }
 | |
|     void setModelNumber(const char *num);
 | |
|     void setModelURL(const String& url) { setModelURL(url.c_str()); }
 | |
|     void setModelURL(const char *url);
 | |
|     void setManufacturer(const String& name) { setManufacturer(name.c_str()); }
 | |
|     void setManufacturer(const char *name);
 | |
|     void setManufacturerURL(const String& url) { setManufacturerURL(url.c_str()); }
 | |
|     void setManufacturerURL(const char *url);
 | |
|     void setHTTPPort(uint16_t port);
 | |
| 
 | |
|   protected:
 | |
|     void _send(ssdp_method_t method);
 | |
|     void _update();
 | |
|     void _startTimer();
 | |
|     static void _onTimerStatic(SSDPClass* self);
 | |
| 
 | |
|     UdpContext* _server;
 | |
|     SSDPTimer* _timer;
 | |
| 
 | |
|     IPAddress _respondToAddr;
 | |
|     uint16_t  _respondToPort;
 | |
| 
 | |
|     bool _pending;
 | |
|     unsigned short _delay;
 | |
|     unsigned long _process_time;
 | |
|     unsigned long _notify_time;
 | |
|     
 | |
|     uint16_t _port;
 | |
|     char _schemaURL[SSDP_SCHEMA_URL_SIZE];
 | |
|     char _uuid[SSDP_UUID_SIZE];
 | |
|     char _friendlyName[SSDP_FRIENDLY_NAME_SIZE];
 | |
|     char _serialNumber[SSDP_SERIAL_NUMBER_SIZE];
 | |
|     char _presentationURL[SSDP_PRESENTATION_URL_SIZE];
 | |
|     char _manufacturer[SSDP_MANUFACTURER_SIZE];
 | |
|     char _manufacturerURL[SSDP_MANUFACTURER_URL_SIZE];
 | |
|     char _modelName[SSDP_MODEL_NAME_SIZE];
 | |
|     char _modelURL[SSDP_MODEL_URL_SIZE];
 | |
|     char _modelNumber[SSDP_MODEL_VERSION_SIZE];
 | |
| };
 | |
| 
 | |
| extern SSDPClass SSDP;
 | |
| 
 | |
| #endif
 |