Plumb UTF-8 text support through to NvConnection

This commit is contained in:
Cameron Gutman
2021-08-10 00:14:13 -05:00
parent 310ba646fc
commit ae9282b0af
4 changed files with 17 additions and 1 deletions
@@ -367,6 +367,12 @@ public class NvConnection {
}
}
public void sendUtf8Text(final String text) {
if (!isMonkey) {
MoonBridge.sendUtf8Text(text);
}
}
public static String findExternalAddressForMdns(String stunHostname, int stunPort) {
return MoonBridge.findExternalAddressIP4(stunHostname, stunPort);
}