aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Start passing around a region server's http port in RegionInfo.Justin Clarke Casey2008-03-231-3/+3
| | | | | | | | | | | * 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
* Formatting cleanup. Minor refactoring.Jeff Ames2008-03-181-5/+0
|
* * Added the ability to type the partial name of a region in the start ↵Teravus Ovares2008-03-181-5/+33
| | | | | | | location box and go to that region if it's there. If no close match was found, it sends you home. This is tested on mySQL. There's untested code on grids that are based on sqlite and MSSQL. The SQL statements *should* be right, but your results may very. * Ex, if you want to go to Wright Plaza, you simply need to type Wright Plaza in the start location in the client when you log-in.
* Formatting cleanup.Jeff Ames2008-03-185-132/+129
|
* Formatting cleanup.Jeff Ames2008-03-181-1/+0
|
* Building on Joha's update...Teravus Ovares2008-03-181-5/+25
| | | | | * Server now listens to the client's start location request for 'home' or 'last' and sends the user to the home location or the last location.
* Replaced some Console.WriteLine calls with writes to log.Jeff Ames2008-03-171-1/+3
|
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-041-4/+4
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
* * More compiler warning nukage.Adam Frisby2008-03-031-2/+0
|
* * Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares2008-03-032-0/+56
| | | | | | * Fixed a few bugs in the patch that are sim crashers. * There's still a bug in mySQL mode/ grid mode where the main userprofile text doesn't save.
* Change handler001 through handler009 to moreCharles Krinke2008-03-022-11/+11
| | | | | | | | appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
* * More Message server stuff. Still not ready.Teravus Ovares2008-02-264-20/+113
|
* * Message Server Linkages (still not ready for use so don't start it yet)Teravus Ovares2008-02-253-2/+18
|
* * Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares2008-02-221-2/+5
| | | | instances to prevent event race conditions
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* * Output XmlRpc error message if user server gets a fault response from the ↵Justin Clarke Casey2008-02-181-2/+9
| | | | | | | | | region server on login * This will make it more obvious if one accidentally starts one's region server in standalone rather than grid mode but then tries to login to a grid (as I am wont to do) * We are now sending back a fault code (-32601) if no xmlrpc method is found rather than an ordinary message
* * Make RegionProfileData.RequestSimProfileData staticJustin Clarke Casey2008-02-181-11/+13
| | | | | | * Minor documentation bits
* * Do not allow a user to be created if one with the same name already existsJustin Clarke Casey2008-02-181-9/+14
|
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-141-5/+5
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* Changed UserServer create user password input to cleartext so we can see ↵Tedd Hansen2008-02-141-1/+2
| | | | | | | what the all the fuzz/blur is about. Make sure that you hide your monitor and that there are no black vans with large antennas parked outside while you type the password. Actually, turn off your monitor while typing password. Then press reset button on your computer.
* Clean up logging calls using String.Format explicitlyJeff Ames2008-02-101-2/+2
|
* Update version numbers to 0.5Jeff Ames2008-02-071-1/+1
|
* Shorten root inventory create folder message.Charles Krinke2008-02-071-2/+1
|
* Converted logging to use log4net.Jeff Ames2008-02-054-69/+58
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Rebase all current servers on common abstract BaseOpenSimServer classJustin Clarke Casey2008-02-041-23/+20
| | | | | | | * The immediate upshot is that "show uptime" from the console will now show uptime on all server types (user, asset, grid, etc) * DEV: This refactoring is far from complete - only just enough to makes the "show uptime" command common accross the servers. More is needed, but in this case it's somewhat like eating cabbage, which I prefer not to do all at once
* Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey2008-02-043-19/+8
|
* * Add total logouts (and total logins) to server side user statsJustin Clarke Casey2008-01-282-9/+13
| | | | | | | * Passing the stats collector through object chains is not ideal - this will change when more stats come in * This change will need a prebuild
* * Add very basic initial login stats to the user serverJustin Clarke Casey2008-01-252-4/+16
| | | | | | | | * Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next
* * Added hooks for logout to all IUserService and all that implement it.Teravus Ovares2008-01-202-0/+38
| | | | | | | * Added a Logout message with a name on the console * Added a *fixme* message to figure out why the current agent session is null * After updating you may notice that there's a login <user> and also a logout<user>
* * Mother of all commits:Adam Frisby2008-01-152-4/+32
| | | | | | | * 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.
* * This update enables the web_login method.Teravus Ovares2008-01-091-0/+2
| | | | | * Remember, the client doesn't support web_login to other grids in the current RC, however the next RC will.
* * Added a hashtable based HTTP processor in preparation of the web_login_keyTeravus Ovares2008-01-091-0/+1
| | | | | | | | * Added the web_login_key to the users table * Added happy configurable http error message pages * This update is large enough to have 'awe' value.. so backup your users or weep. * Not tested on MSSQL, even though I added code to update the tables!
* *Added ability to update only necessary data on insertRegion for the grid ↵mingchen2008-01-071-1/+1
| | | | server.
* * Adding More to the MessageServer classes.Teravus Ovares2008-01-071-0/+27
| | | | | * Don't forget to prebuild
* * A few more Message Server comms related updatesTeravus Ovares2008-01-061-2/+2
|
* * Added some userserver glue for communications with the message server Teravus Ovares2008-01-063-1/+183
| | | | | * Added some code for the message server, fixed a few references and starting to flesh it out.
* * Applying jhurliman's LLSD login enablement patch.Teravus Ovares2008-01-051-1/+2
| | | | | | | | * I'm keeping it deactivated until some issues are resolved. * I'm patching it in deactivated so the patch doesn't get outdated * I've deactivated it by commenting out the handler for the application/xml+llsd content type. * While I've tested this as much as possible on my setup and found the deactivated code doesn't cause any problems, consider this update experimental (event though it's deactivated)
* And another log-instead-of-crash... when creating user fails.Tedd Hansen2008-01-051-3/+19
|
* * Updates UserServer Teravus Ovares2008-01-022-2/+102
| | | | | | | | * Updates OSG1UserServices * Friends list is now persistent in grid mode. * You can add, new friends and remove them
* Standard library folders can now be configued in the xml in ↵Justin Clarke Casey2007-12-312-3/+8
| | | | | | | | inventory/OpenSimLibrary - no hardcoded changes are required. For some reason, all the folders are currently showing up as texture folders, even though they are configured with the same types as the agent inventory folders. This should be resolved soon.
* * Optimized usingslbsa712007-12-273-55/+63
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* * Fixed UserServer crash when it's passed 00000000000000000000000000 as the ↵Teravus Ovares2007-12-211-3/+28
| | | | | | | UUID. * It turns out that by proxy, this means that you won't have to look up people's UUID anymore in grid mode, If the UUID is LLUUID.Zero, it tries to look up avatar by name.
* Comment out "METHOD BY UUID CALLED" WriteLine as it isCharles Krinke2007-12-201-1/+2
| | | | | obscuring the UserServer console for now.
* Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames2007-12-202-10/+10
| | | | Works with LibSL rev>1532
* More subtle message tuning of log messages.Charles Krinke2007-12-161-1/+1
|
* A bit more tuning of UserServer messages.Charles Krinke2007-12-161-6/+8
|
* Comment out an unneeded "Home Location" message.Charles Krinke2007-12-161-1/+2
|
* Improve UserServer login messages for logging.Charles Krinke2007-12-161-4/+8
|
* * Make inventory operations sync rather than async. This is to alleviate ↵Justin Clarke Casey2007-12-151-5/+9
| | | | | | | | | race conditions such as that in mantis #190 * Make inventory messages more verbose. Hopefully they aren't now too verbose * This may resolve some grid instability but it's likely there's much more out there.
* * Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST ↵Teravus Ovares2007-12-142-7/+7
| | | | calls