diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 754b925..d72ee6f 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -878,6 +878,10 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
878 | 878 | ||
879 | } | 879 | } |
880 | 880 | ||
881 | public void ProcessPendingPackets() | ||
882 | { | ||
883 | } | ||
884 | |||
881 | public void ProcessInPacket(Packet NewPack) | 885 | public void ProcessInPacket(Packet NewPack) |
882 | { | 886 | { |
883 | 887 | ||
@@ -885,6 +889,11 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
885 | 889 | ||
886 | public void Close() | 890 | public void Close() |
887 | { | 891 | { |
892 | Close(true); | ||
893 | } | ||
894 | |||
895 | public void Close(bool sendStop) | ||
896 | { | ||
888 | Disconnect(); | 897 | Disconnect(); |
889 | } | 898 | } |
890 | 899 | ||