aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/GridInterfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/GridInterfaces')
-rw-r--r--src/GridInterfaces/IGridServer.cs19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/GridInterfaces/IGridServer.cs b/src/GridInterfaces/IGridServer.cs
index 7a43399..c56afcd 100644
--- a/src/GridInterfaces/IGridServer.cs
+++ b/src/GridInterfaces/IGridServer.cs
@@ -120,15 +120,16 @@ namespace OpenSim.GridServers
120 IGridServer GetGridServer(); 120 IGridServer GetGridServer();
121 } 121 }
122 122
123 public class agentcircuitdata { 123 public class agentcircuitdata
124 public agentcircuitdata() { } 124 {
125 public LLUUID AgentID; 125 public agentcircuitdata() { }
126 public LLUUID SessionID; 126 public LLUUID AgentID;
127 public LLUUID SecureSessionID; 127 public LLUUID SessionID;
128 public string firstname; 128 public LLUUID SecureSessionID;
129 public string lastname; 129 public string firstname;
130 public uint circuitcode; 130 public string lastname;
131 } 131 public uint circuitcode;
132 }
132 133
133 134
134} 135}