aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/NetworkServersInfo.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-07-23The new secure inventory server mode (in r5590) can now be disabled from ↵Johan Berntsson1-1/+3
OpenSim.ini. Default is to use the new mode.
2008-04-29* Spring cleaning.Adam Frisby1-18/+13
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-1/+1
(this took a while to run).
2008-03-23* Start passing around a region server's http port in RegionInfo.Justin Clarke Casey1-1/+1
* This means that caps methods (editing scripts, poss map functions, etc) on non-home regions should now work with servers which are listening for http ports on a non default (9000) port. * If you are running a region server, this may only work properly once your grid server upgrades to this revision * PLEASE NOTE: This shouldn't cause inter-region problems if one end of the connection hasn't upgraded to this revision. However if it does, the instability will persist until the grid and region (and possibly all the region's neighbours) have upgraded to this revision. * This revision also adds extra login related messages, both for success and failure conditions
2008-03-18Formatting cleanup.Jeff Ames1-27/+26
2008-01-15* Mother of all commits:Adam Frisby1-8/+9
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
2007-12-27* Optimized usingslbsa711-3/+5
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-2/+2
notice of doom
2007-12-06removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames1-5/+5
2007-11-01* Diuerse beavtificatemslbsa711-2/+3
2007-10-31* Moved OpenSim/Framework/General to OpenSim/Framework for great justice.lbsa711-0/+0
2007-10-31set svn:eol-styleJeff Ames1-100/+100
2007-10-30Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax1-1/+5
InevntoryServer
2007-10-30* Optimized usingslbsa711-10/+12
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-94/+94
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-26Added method to create default config file in region server(OpenSim) ↵Tleiades Hax1-1/+1
following along the same priciples as in the other servers.
2007-10-15* Applied Chillken patch #419: consolidate_ports-r2096-3.patch - ↵lbsa711-7/+9
consolidated port number defaults. Thankx Chillken!
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-4/+1
Tleiades patch 444 and 445.
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-1/+4
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-09-10mass update of urls in source code to new websiteSean Dague1-1/+1
2007-08-17*Moved network_servers_info.xml into OpenSim.ini under [Network]mingchen1-61/+15
2007-08-06* SimpleApp works again:lbsa711-6/+16
* NetworkServersInfo settable without config file * DefaultHomeLoc throws if getted before setted * Removed nonsensical sandbox distinction * Refactored default config file creation * Some more small refactorings on shapes
2007-07-20* Fixed an config issue (log not initialized in RegionInfo config)lbsa711-0/+5
* Added LineInfo stacktrace parser to LogBase (not used yet though)
2007-07-19*Handler Functions can now refuse an object as invalid by returning false, ↵mingchen1-12/+14
thus forcing the user to re-enter the data *Added TYPE_STRING_NOT_EMPTY that requires some sort of text to be entered *Added another parameter to addConfigurationOption called use_default_no_prompt that will not ask via the console a configuration option; it will use whatever is in the config file. If nothing is in the config file for that option, it will force itself to use default
2007-07-18*New Configuration System, much easier and less buggy compared to the ↵mingchen1-157/+59
original system in place *View RegionInfo.cs for an example on how it works! *This hopefully copies all the files over, but who knows :)
2007-07-16changed to native line ending encodingSean Dague1-219/+219
2007-07-15* Fixed bug where UserServer SendKey would not be saved in configuration.Adam Frisby1-1/+1
2007-07-13Changed simpleApp to use basic physics.MW1-2/+2
Done some work of fixing primitive/SceneObject copying. Set DefaultHome region to 1000,1000.
2007-07-03*Fixed storage issue as noted in last commit of the OGS1 GridServermingchen1-1/+1
*Reverted the default remote grid server port back to 8001 (from a port change to debug a previous issue)
2007-07-03*Removed GridInfo class as it has been previously replaced with the much ↵mingchen1-1/+1
better NetworkServersInfo class *Got the GridServer in OGS1 to go through with registering the region, but the actual storage of the region isnt working right now. **After this is fixed, grid mode should work!
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-15/+14
* added some licensing info
2007-06-28*Master User is now set upmingchen1-0/+39
*Added support for getting user profile information from remote grid server (untested) *Updated prebuild.xml