You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-15 22:56:30 +09:00
Samples fixed for namechange Endpoint -> EndPoint
This commit is contained in:
@@ -93,7 +93,7 @@ namespace ChatServer
|
||||
|
||||
foreach (NetConnection conn in s_server.Connections)
|
||||
{
|
||||
string str = NetUtility.ToHexString(conn.RemoteUniqueIdentifier) + " from " + conn.RemoteEndpoint.ToString() + " [" + conn.Status + "]";
|
||||
string str = NetUtility.ToHexString(conn.RemoteUniqueIdentifier) + " from " + conn.RemoteEndPoint.ToString() + " [" + conn.Status + "]";
|
||||
s_form.listBox1.Items.Add(str);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user