This repository has been archived by the owner on Jan 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
CC3000_MDNS.h
70 lines (58 loc) · 2.42 KB
/
CC3000_MDNS.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
CC3000 Multicast DNS
Version 1.1
Copyright (c) 2013 Tony DiCola ([email protected])
This is a simple implementation of multicast DNS query support for an Arduino
and CC3000 WiFI chip. Only support for resolving address queries is currently
implemented.
Requirements:
- Adafruit CC3000 Library: https://github.com/adafruit/Adafruit_CC3000_Library
Usage:
- Include the CC3000 Multicast DNS library in the sketch.
- Create an instance of the MDNSResponder class.
- Call the begin method in the sketch's setup and provide a domain name (without
the '.local' suffix, i.e. just provide 'foo' to resolve 'foo.local'), and the
Adafruit CC3000 class instance. Optionally provide a time to live (in seconds)
for the DNS record--the default is 1 hour.
- Call the update method in each iteration of the sketch's loop function.
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 CC3000_MDNS_H
#define CC3000_MDNS_H
#include "Adafruit_CC3000.h"
#include "utility/socket.h"
class MDNSResponder {
public:
MDNSResponder();
~MDNSResponder();
bool begin(const char* domain, Adafruit_CC3000& cc3000, uint32_t ttlSeconds = 3600);
void update();
private:
// Expected query values
static uint8_t _queryHeader[];
uint8_t* _expected;
int _expectedLen;
// Current parsing state
int _index;
// Response data
uint8_t* _response;
int _responseLen;
// Socket for MDNS communication
static int _mdnsSocket;
};
#endif