diff options
Diffstat (limited to 'protocols/Tox/src/tox_dns.h')
-rw-r--r-- | protocols/Tox/src/tox_dns.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_dns.h b/protocols/Tox/src/tox_dns.h new file mode 100644 index 0000000000..1629141680 --- /dev/null +++ b/protocols/Tox/src/tox_dns.h @@ -0,0 +1,24 @@ +#ifndef _TOX_DNS_H_
+#define _TOX_DNS_H_
+
+struct dns_server {
+ char *domain;
+ uint8_t key[32];
+} dns_servers[] = {
+ {
+ "toxme.se",
+ {
+ 0x5D, 0x72, 0xC5, 0x17, 0xDF, 0x6A, 0xEC, 0x54, 0xF1, 0xE9, 0x77, 0xA6, 0xB6, 0xF2, 0x59, 0x14,
+ 0xEA, 0x4C, 0xF7, 0x27, 0x7A, 0x85, 0x02, 0x7C, 0xD9, 0xF5, 0x19, 0x6D, 0xF1, 0x7E, 0x0B, 0x13
+ }
+ },
+ {
+ "utox.org",
+ {
+ 0xD3, 0x15, 0x4F, 0x65, 0xD2, 0x8A, 0x5B, 0x41, 0xA0, 0x5D, 0x4A, 0xC7, 0xE4, 0xB3, 0x9C, 0x6B,
+ 0x1C, 0x23, 0x3C, 0xC8, 0x57, 0xFB, 0x36, 0x5C, 0x56, 0xE8, 0x39, 0x27, 0x37, 0x46, 0x2A, 0x12
+ }
+ },
+};
+
+#endif //_TOX_DNS_H_
\ No newline at end of file |