Skip to content

Commit

Permalink
Add file headers
Browse files Browse the repository at this point in the history
  • Loading branch information
mikee47 committed Mar 2, 2021
1 parent 7bca2ed commit 58e8797
Show file tree
Hide file tree
Showing 15 changed files with 152 additions and 3 deletions.
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/Answer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Answer.cpp
*
****/

#include "include/Network/Mdns/Answer.h"
#include "include/Network/Mdns/Response.h"
#include "Packet.h"
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/Finder.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Finder.cpp
*
****/

#include "include/Network/Mdns/Finder.h"
#include "include/Network/Mdns/Response.h"
#include "Packet.h"
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/Name.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Name.cpp
*
****/

#include "include/Network/Mdns/Name.h"
#include "include/Network/Mdns/Response.h"
#include "Packet.h"
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/Packet.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Packet.h
*
****/

#pragma once

#include <WString.h>
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/Resource.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Resource.cpp
*
****/

#include "include/Network/Mdns/Resource.h"
#include "include/Network/Mdns/Answer.h"
#include "Packet.h"
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/Responder.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Responder.cpp
*
****/

#include "include/Network/Mdns/Responder.h"
#include <Platform/System.h>

Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/Response.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Response.cpp
*
****/

#include "include/Network/Mdns/Response.h"
#include "Packet.h"
#include <Data/HexString.h>
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/include/Network/Mdns/Answer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Answer.h
*
****/

#pragma once

#include <Data/LinkedObjectList.h>
Expand Down
15 changes: 12 additions & 3 deletions Sming/Components/mdns/src/include/Network/Mdns/Finder.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
/**
* Since big portions of the code are copied from Finder.h and Finder.cpp are copied
* from MrDunk's mDNS code these files are distributed under the same license as his project.
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Finder.h
*
* Code originally based on MrDunk's mDNS code distributed under the MIT license.
*
* MIT license: https://github.com/mrdunk/esp8266_mdns/blob/master/LICENCE.txt
*
* However, code has been essentially rewritten so Sming LGPL v3 license applies.
*
* References:
*
* Zero-configuration networking (DNS-SD) https://en.wikipedia.org/wiki/Zero-configuration_networking
Expand All @@ -12,6 +20,7 @@
* DNS record types https://en.wikipedia.org/wiki/List_of_DNS_record_types
*
*/

#pragma once

#include <Delegate.h>
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/include/Network/Mdns/Name.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Name.h
*
****/

#pragma once

#include <WString.h>
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/include/Network/Mdns/Query.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Query.h
*
****/

#pragma once

#include "Resource.h"
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/include/Network/Mdns/Resource.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Resource.h
*
****/

#pragma once

#include "Name.h"
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/include/Network/Mdns/Responder.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Responder.h
*
****/

#pragma once

#include "Service.h"
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/include/Network/Mdns/Response.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Response.h
*
****/

#pragma once

#include "Answer.h"
Expand Down
10 changes: 10 additions & 0 deletions Sming/Components/mdns/src/include/Network/Mdns/Service.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/****
* Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
* Created 2015 by Skurydin Alexey
* http://github.com/SmingHub/Sming
* All files of the Sming Core are provided under the LGPL v3 license.
*
* Service.h
*
****/

#pragma once

#include <user_config.h>
Expand Down

0 comments on commit 58e8797

Please sign in to comment.