diff options
author | MW | 2007-05-16 17:35:27 +0000 |
---|---|---|
committer | MW | 2007-05-16 17:35:27 +0000 |
commit | 1e9a0220e69a62dd45b53753537fb4563e50412c (patch) | |
tree | bfe79152761b164dbd437b60dc025aa1f0c8c3fc /OpenSim.Framework | |
parent | * removed unused new-login.dat (diff) | |
download | opensim-SC_OLD-1e9a0220e69a62dd45b53753537fb4563e50412c.zip opensim-SC_OLD-1e9a0220e69a62dd45b53753537fb4563e50412c.tar.gz opensim-SC_OLD-1e9a0220e69a62dd45b53753537fb4563e50412c.tar.bz2 opensim-SC_OLD-1e9a0220e69a62dd45b53753537fb4563e50412c.tar.xz |
Quite big change to how Sessions/circuits are Authenticated. Seems to work okay but needs a lot more testing.
Diffstat (limited to 'OpenSim.Framework')
-rw-r--r-- | OpenSim.Framework/Types/AgentCiruitData.cs | 6 | ||||
-rw-r--r-- | OpenSim.Framework/Types/Login.cs | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim.Framework/Types/AgentCiruitData.cs b/OpenSim.Framework/Types/AgentCiruitData.cs index 555b3b9..7314586 100644 --- a/OpenSim.Framework/Types/AgentCiruitData.cs +++ b/OpenSim.Framework/Types/AgentCiruitData.cs | |||
@@ -11,10 +11,12 @@ namespace OpenSim.Framework.Types | |||
11 | public LLUUID AgentID; | 11 | public LLUUID AgentID; |
12 | public LLUUID SessionID; | 12 | public LLUUID SessionID; |
13 | public LLUUID SecureSessionID; | 13 | public LLUUID SecureSessionID; |
14 | public LLVector3 startpos; | 14 | public LLVector3 startpos; |
15 | public string firstname; | 15 | public string firstname; |
16 | public string lastname; | 16 | public string lastname; |
17 | public uint circuitcode; | 17 | public uint circuitcode; |
18 | public bool child; | 18 | public bool child; |
19 | public LLUUID InventoryFolder; | ||
20 | public LLUUID BaseFolder; | ||
19 | } | 21 | } |
20 | } | 22 | } |
diff --git a/OpenSim.Framework/Types/Login.cs b/OpenSim.Framework/Types/Login.cs index ed77a46..71f9de3 100644 --- a/OpenSim.Framework/Types/Login.cs +++ b/OpenSim.Framework/Types/Login.cs | |||
@@ -14,6 +14,8 @@ namespace OpenSim.Framework.Types | |||
14 | public LLUUID SecureSession = LLUUID.Zero; | 14 | public LLUUID SecureSession = LLUUID.Zero; |
15 | public LLUUID InventoryFolder; | 15 | public LLUUID InventoryFolder; |
16 | public LLUUID BaseFolder; | 16 | public LLUUID BaseFolder; |
17 | public uint CircuitCode; | ||
18 | |||
17 | public Login() | 19 | public Login() |
18 | { | 20 | { |
19 | 21 | ||