Add MulticastDnsClient

This commit is contained in:
2020-02-24 20:46:47 +01:00
parent f93b7ce8b1
commit 36d6b47f78
30 changed files with 2056 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef CLASS_H
#define CLASS_H
namespace Network {
namespace Dns {
class Class
{
public:
enum type
{
NONE = 0,
IN = 1,
CS = 2,
CH = 3,
HS = 4
};
};
} // namespace Dns
} // namespace Network
#endif // CLASS_H