aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/IncomingPacket.cs
diff options
context:
space:
mode:
authorMelanie2012-10-17 23:50:48 +0100
committerMelanie2012-10-17 23:50:48 +0100
commit9b684468113cf4933816adae3a53d8ac6d94b173 (patch)
treeea622759f04cd81746b597398f6c66a4f219ea87 /OpenSim/Region/ClientStack/Linden/UDP/IncomingPacket.cs
parentMerge branch 'avination' into careminster (diff)
parentExplicitly return only the incoming AgentUpdate packet as this is the only on... (diff)
downloadopensim-SC_OLD-9b684468113cf4933816adae3a53d8ac6d94b173.zip
opensim-SC_OLD-9b684468113cf4933816adae3a53d8ac6d94b173.tar.gz
opensim-SC_OLD-9b684468113cf4933816adae3a53d8ac6d94b173.tar.bz2
opensim-SC_OLD-9b684468113cf4933816adae3a53d8ac6d94b173.tar.xz
Merge branch 'master' into careminster
Conflicts: OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/IncomingPacket.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/IncomingPacket.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/IncomingPacket.cs b/OpenSim/Region/ClientStack/Linden/UDP/IncomingPacket.cs
index 1b8535c..e22670b 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/IncomingPacket.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/IncomingPacket.cs
@@ -45,7 +45,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
45 public Packet Packet; 45 public Packet Packet;
46 46
47 /// <summary> 47 /// <summary>
48 /// Default constructor 48 /// No arg constructor.
49 /// </summary>
50 public IncomingPacket() {}
51
52 /// <summary>
53 /// Constructor
49 /// </summary> 54 /// </summary>
50 /// <param name="client">Reference to the client this packet came from</param> 55 /// <param name="client">Reference to the client this packet came from</param>
51 /// <param name="packet">Packet data</param> 56 /// <param name="packet">Packet data</param>