-
Notifications
You must be signed in to change notification settings - Fork 9
Description
Trying to set up a Udp server, using:
import hxnet.base.Factory;
import hxnet.udp.Server;
var server = new Server(new Factory(hxnet.protocols.Telnet), 5959, "localhost");
I get the errors:
/usr/local/lib/haxelib/hxnet/git/hxnet/udp/Server.hx:72: characters 5-28 : hxnet.interfaces.Protocol has no field makeConnection (Suggestion: loseConnection)
/usr/local/lib/haxelib/hxnet/git/hxnet/udp/Connection.hx:10: lines 10-49 : Field isOpen needed by hxnet.interfaces.Connection is missing
/usr/local/lib/haxelib/hxnet/git/hxnet/udp/Connection.hx:18: lines 18-40 : Field writeBytes has different type than in hxnet.interfaces.Connection
/usr/local/lib/haxelib/hxnet/git/hxnet/udp/Connection.hx:18: lines 18-40 : Different number of function arguments
/usr/local/lib/haxelib/hxnet/git/hxnet/udp/Server.hx:19: lines 19-97 : Field broadcast needed by hxnet.interfaces.Server is missing
Is it just that the udp classes haven't kept up to date and are no longer usable?