aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/LocalServers/LocalGridServers/LocalGrid.cs
diff options
context:
space:
mode:
authorgareth2007-03-18 20:18:52 +0000
committergareth2007-03-18 20:18:52 +0000
commit99c56acf746516068562fd42ab286668413894e8 (patch)
tree6bd5141f0db0cf44d8fbaf4855f65fe3de414695 /src/LocalServers/LocalGridServers/LocalGrid.cs
parentAdded neighbourinfo class (diff)
downloadopensim-SC_OLD-99c56acf746516068562fd42ab286668413894e8.zip
opensim-SC_OLD-99c56acf746516068562fd42ab286668413894e8.tar.gz
opensim-SC_OLD-99c56acf746516068562fd42ab286668413894e8.tar.bz2
opensim-SC_OLD-99c56acf746516068562fd42ab286668413894e8.tar.xz
Added some sanity
Diffstat (limited to '')
-rw-r--r--src/LocalServers/LocalGridServers/LocalGrid.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/LocalServers/LocalGridServers/LocalGrid.cs b/src/LocalServers/LocalGridServers/LocalGrid.cs
index 32ed113..abea888 100644
--- a/src/LocalServers/LocalGridServers/LocalGrid.cs
+++ b/src/LocalServers/LocalGridServers/LocalGrid.cs
@@ -96,7 +96,7 @@ namespace LocalGridServers
96 96
97 } 97 }
98 98
99 public void SetServerInfo(string ServerUrl, string ServerKey) 99 public void SetServerInfo(string ServerUrl, string SendKey)
100 { 100 {
101 101
102 } 102 }
@@ -105,7 +105,7 @@ namespace LocalGridServers
105 { 105 {
106 while(true) 106 while(true)
107 { 107 {
108 108 Thread.Sleep(1000);
109 } 109 }
110 } 110 }
111 } 111 }
@@ -160,12 +160,12 @@ namespace LocalGridServers
160 return(uuidBlock); 160 return(uuidBlock);
161 } 161 }
162 162
163 public override void RequestNeighbours() 163 public override neighbourinfo[] RequestNeighbours()
164 { 164 {
165 return; 165 return new neighbourinfo[8];
166 } 166 }
167 167
168 public override void SetServerInfo(string ServerUrl, string ServerKey) 168 public override void SetServerInfo(string GridServerUrl, string GridSendKey, string GridRecvKey, string UserServerUrl, string UserSendKey, string UserRecvKey)
169 { 169 {
170 170
171 } 171 }