diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-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 ee7aa2da..c7a9484 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 2e0450c..23255fb 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -832,12 +832,21 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
832 | { | 832 | { |
833 | } | 833 | } |
834 | 834 | ||
835 | public void ProcessPendingPackets() | ||
836 | { | ||
837 | } | ||
838 | |||
835 | public void ProcessInPacket(Packet NewPack) | 839 | public void ProcessInPacket(Packet NewPack) |
836 | { | 840 | { |
837 | } | 841 | } |
838 | 842 | ||
839 | public void Close() | 843 | public void Close() |
840 | { | 844 | { |
845 | Close(true); | ||
846 | } | ||
847 | |||
848 | public void Close(bool sendStop) | ||
849 | { | ||
841 | } | 850 | } |
842 | 851 | ||
843 | public void Start() | 852 | public void Start() |