diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 2a81d5c..7c8b1aa 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -1108,9 +1108,16 @@ namespace OpenSim.Framework | |||
1108 | void SendBlueBoxMessage(UUID FromAvatarID, String FromAvatarName, String Message); | 1108 | void SendBlueBoxMessage(UUID FromAvatarID, String FromAvatarName, String Message); |
1109 | 1109 | ||
1110 | void SendLogoutPacket(); | 1110 | void SendLogoutPacket(); |
1111 | ClientInfo GetClientInfo(); | 1111 | EndPoint GetClientEP(); |
1112 | 1112 | ||
1113 | // WARNING WARNING WARNING | ||
1114 | // | ||
1115 | // The two following methods are EXCLUSIVELY for the load balancer. | ||
1116 | // they cause a MASSIVE performance hit! | ||
1117 | // | ||
1118 | ClientInfo GetClientInfo(); | ||
1113 | void SetClientInfo(ClientInfo info); | 1119 | void SetClientInfo(ClientInfo info); |
1120 | |||
1114 | void SetClientOption(string option, string value); | 1121 | void SetClientOption(string option, string value); |
1115 | string GetClientOption(string option); | 1122 | string GetClientOption(string option); |
1116 | void Terminate(); | 1123 | void Terminate(); |