diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 9 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index 84faac0..fb8543b 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 | ||
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index 9066691..3cbc538 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -831,12 +831,21 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
831 | { | 831 | { |
832 | } | 832 | } |
833 | 833 | ||
834 | public void ProcessPendingPackets() | ||
835 | { | ||
836 | } | ||
837 | |||
834 | public void ProcessInPacket(Packet NewPack) | 838 | public void ProcessInPacket(Packet NewPack) |
835 | { | 839 | { |
836 | } | 840 | } |
837 | 841 | ||
838 | public void Close() | 842 | public void Close() |
839 | { | 843 | { |
844 | Close(true); | ||
845 | } | ||
846 | |||
847 | public void Close(bool sendStop) | ||
848 | { | ||
840 | } | 849 | } |
841 | 850 | ||
842 | public void Start() | 851 | public void Start() |