diff options
author | Justin Clark-Casey (justincc) | 2012-07-12 23:09:36 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-07-12 23:09:36 +0100 |
commit | 15283d35f1c567d6b33d0ba2884c1a73c83c6ce6 (patch) | |
tree | b6924d8313ce52fce049b84d6ad9cc8e9d525302 /OpenSim/Framework/AgentCircuitData.cs | |
parent | Add active status to "show connections" (diff) | |
download | opensim-SC-15283d35f1c567d6b33d0ba2884c1a73c83c6ce6.zip opensim-SC-15283d35f1c567d6b33d0ba2884c1a73c83c6ce6.tar.gz opensim-SC-15283d35f1c567d6b33d0ba2884c1a73c83c6ce6.tar.bz2 opensim-SC-15283d35f1c567d6b33d0ba2884c1a73c83c6ce6.tar.xz |
Extend "show circuits" to show circuit code, ip and viewer name.
Also change to use standard table formatting
"show circuits" and "show connections" console commands are very similar but access different data structures.
Diffstat (limited to 'OpenSim/Framework/AgentCircuitData.cs')
-rw-r--r-- | OpenSim/Framework/AgentCircuitData.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/AgentCircuitData.cs b/OpenSim/Framework/AgentCircuitData.cs index 57fb808..ffcc584 100644 --- a/OpenSim/Framework/AgentCircuitData.cs +++ b/OpenSim/Framework/AgentCircuitData.cs | |||
@@ -99,6 +99,11 @@ namespace OpenSim.Framework | |||
99 | public string lastname; | 99 | public string lastname; |
100 | 100 | ||
101 | /// <summary> | 101 | /// <summary> |
102 | /// Agent's full name. | ||
103 | /// </summary> | ||
104 | public string Name { get { return string.Format("{0} {1}", firstname, lastname); } } | ||
105 | |||
106 | /// <summary> | ||
102 | /// Random Unique GUID for this session. Client gets this at login and it's | 107 | /// Random Unique GUID for this session. Client gets this at login and it's |
103 | /// only supposed to be disclosed over secure channels | 108 | /// only supposed to be disclosed over secure channels |
104 | /// </summary> | 109 | /// </summary> |