diff options
author | Justin Clarke Casey | 2008-10-30 22:32:23 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-30 22:32:23 +0000 |
commit | 5feaff8524845d3475c02d1ba96465925e65e34a (patch) | |
tree | 0a74b46b64e56ee924e59077276b8fa7f2b63a19 /OpenSim/Region/Environment | |
parent | * test: Test that the client stack doesn't completely blow up if a client pas... (diff) | |
download | opensim-SC_OLD-5feaff8524845d3475c02d1ba96465925e65e34a.zip opensim-SC_OLD-5feaff8524845d3475c02d1ba96465925e65e34a.tar.gz opensim-SC_OLD-5feaff8524845d3475c02d1ba96465925e65e34a.tar.bz2 opensim-SC_OLD-5feaff8524845d3475c02d1ba96465925e65e34a.tar.xz |
test: Extend malformed packet test to actually check that a valid packet can get through after the malformed ones have been sent
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneBase.cs | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 77afc43..0dd89ae 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -2185,11 +2185,6 @@ namespace OpenSim.Region.Environment.Scenes | |||
2185 | 2185 | ||
2186 | #region Add/Remove Avatar Methods | 2186 | #region Add/Remove Avatar Methods |
2187 | 2187 | ||
2188 | /// <summary> | ||
2189 | /// Register the new client with the scene | ||
2190 | /// </summary> | ||
2191 | /// <param name="client"></param | ||
2192 | /// <param name="child"></param> | ||
2193 | public override void AddNewClient(IClientAPI client, bool child) | 2188 | public override void AddNewClient(IClientAPI client, bool child) |
2194 | { | 2189 | { |
2195 | SubscribeToClientEvents(client); | 2190 | SubscribeToClientEvents(client); |
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs index 7a3e58f..a1d8f67 100644 --- a/OpenSim/Region/Environment/Scenes/SceneBase.cs +++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs | |||
@@ -130,10 +130,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
130 | #region Add/Remove Agent/Avatar | 130 | #region Add/Remove Agent/Avatar |
131 | 131 | ||
132 | /// <summary> | 132 | /// <summary> |
133 | /// | 133 | /// Register the new client with the scene |
134 | /// </summary> | 134 | /// </summary> |
135 | /// <param name="remoteClient"></param> | 135 | /// <param name="client"></param |
136 | /// <param name="agentID"></param> | ||
137 | /// <param name="child"></param> | 136 | /// <param name="child"></param> |
138 | public abstract void AddNewClient(IClientAPI client, bool child); | 137 | public abstract void AddNewClient(IClientAPI client, bool child); |
139 | 138 | ||