mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
- Add DnDns library for performing DNS queries - Add query method for SRV record - Resolve Minecraft services This allows resolving actual server addresses for servers using SRV records on their domain names SRV records are basically DNS redirection eg: myserver.net -> srv1.myserver.net:12345 Should solve #186 reported by sammyvsparks and many others.
12 lines
249 B
C#
12 lines
249 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using DnDns.Query;
|
|
|
|
namespace DnDns.Security
|
|
{
|
|
public interface IMessageSecurityProvider
|
|
{
|
|
DnsQueryRequest SecureMessage(DnsQueryRequest dnsQueryRequest);
|
|
}
|
|
}
|