You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Large part of the current implementation of embedded DNS server is borrowed from dnsjava, but the version PacketProxy uses is too old (that seems to be written in Java <1.5.) Compiling with OpenJDK >= 16 emits deprecation warnings, which tells us that new Integer(int) will be removed in future version of Java, meaning that the current implementation of DNS server will not work in future version of Java.
The text was updated successfully, but these errors were encountered:
Large part of the current implementation of embedded DNS server is borrowed from dnsjava, but the version PacketProxy uses is too old (that seems to be written in Java <1.5.) Compiling with OpenJDK >= 16 emits deprecation warnings, which tells us that
new Integer(int)
will be removed in future version of Java, meaning that the current implementation of DNS server will not work in future version of Java.The text was updated successfully, but these errors were encountered: