mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
53 lines
2.0 KiB
C#
53 lines
2.0 KiB
C#
using System;
|
|
|
|
namespace Robust.Shared.Network
|
|
{
|
|
/// <summary>
|
|
/// The Client version of the INetManager.
|
|
/// </summary>
|
|
[NotContentImplementable]
|
|
public interface IClientNetManager : INetManager
|
|
{
|
|
/// <summary>
|
|
/// The NetChannel of the server.
|
|
/// </summary>
|
|
INetChannel? ServerChannel { get; }
|
|
|
|
ClientConnectionState ClientConnectState { get; }
|
|
event Action<ClientConnectionState> ClientConnectStateChanged;
|
|
|
|
/// <summary>
|
|
/// The attempted connection by a client to a server failed.
|
|
/// </summary>
|
|
event EventHandler<NetConnectFailArgs> ConnectFailed;
|
|
|
|
/// <summary>
|
|
/// Attempts to connect to the remote server. This does not Restart() the client networking. Make sure
|
|
/// to Initialize(true) networking before calling this.
|
|
/// </summary>
|
|
/// <param name="host">The IP address of the remote server.</param>
|
|
/// <param name="port">The port the server is listening on.</param>
|
|
/// <param name="userNameRequest">
|
|
/// The user name to request from the server.
|
|
/// The server is in no way obliged to actually give this username to the client.
|
|
/// It's more a "I'd prefer this" kinda deal.
|
|
/// </param>
|
|
void ClientConnect(string host, int port, string userNameRequest);
|
|
|
|
/// <summary>
|
|
/// Disconnects from the server. This does not Restart() the client networking. Make sure
|
|
/// to Initialize(true) networking before calling this.
|
|
/// Also cancels in-progress connection attempts.
|
|
/// </summary>
|
|
/// <param name="reason">The reason why disconnect was called.</param>
|
|
void ClientDisconnect(string reason);
|
|
|
|
void Reset(string reason);
|
|
|
|
/// <summary>
|
|
/// Dispatches a messages as if it had just been received over the network.
|
|
/// </summary>
|
|
void DispatchLocalNetMessage(NetMessage message);
|
|
}
|
|
}
|