aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-01* Breaking all the code, breaking all the code..!Adam Frisby1-1/+1
* Made a bunch more members static, removed some dead code, general cleaning.
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby1-15/+15
with namespaces.
2008-04-23* Fix for mantis #1025 - Region always reports that location is unavailable. ↵Adam Frisby1-2/+3
Thanks Lulurun.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-5/+6
(this took a while to run).
2008-04-20* On grid mode, if the inventory service is responding but returning an ↵Justin Clarke Casey1-2/+2
empty response to a whole agent inventory request, then post an inventory login failure message. IMO, this is better than allowing the agent to login with an apparantly blank inventory.
2008-04-15* Make it easier to follow logins on the user server by changing and tidying ↵Justin Clarke Casey1-18/+22
up log messages
2008-04-15* Send a meaningful response to both the user server console and the client ↵Justin Clarke Casey1-13/+28
if a login fails because the inventory service has failed.
2008-04-10changing UserAgentData to use properties. This caused moreSean Dague1-7/+7
grief than expected, as monodevelop doesn't like to refactor properties of properties.
2008-04-10further renaming of properties for claritySean Dague1-5/+5
2008-04-10moved fields to properties for UserDataProfile, which wasSean Dague1-23/+23
actually a little more work than I expected given the copious use of out params.
2008-04-07more refactoring, this time on InventoryFolderBaseSean Dague1-5/+5
* wrap attributes in properties * clean up names a little bit * clean up name styles
2008-03-31* Set Svn Properties eol-style: |337Teravus Ovares1-1/+1
2008-03-29* Various 1.19.0.5 grid inventory request fixes. These will only take ↵Justin Clarke Casey1-1/+1
affect once the region and the grid servers have upgraded to this revision * You may also need to clear your cache before seeing any effect. * These fixes may or may not affect inventory on the RC client. * These fixes should make non-root folders work better, stop inventory failure on first login, allow trash to be emptied and make texture picker in object edit view work properly * Fixes are 1) make initial root folder request wait for async inventory delivery, 2) deliver all folders in the initial login skeleton, not just the root child ones and 3) deal with situations where we receive child folders from the inventory service before their parent is received.
2008-03-28* Refactor: Rename CreateInventoryData() to GetInventorySkeleton()Justin Clarke Casey1-33/+17
* Replace the unused default GetInventorySkeleton() impleemntation with an abstract declaration - less confusing this way imho * Add some comments
2008-03-28* Remove pointless boolean on AgentInventory.CreateRootFolder()Justin Clarke Casey1-1/+1
2008-03-23* minor: check in the rest of a comment I forgot to finish off in the last ↵Justin Clarke Casey1-1/+1
revision
2008-03-23* Start passing around a region server's http port in RegionInfo.Justin Clarke Casey1-18/+39
* 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. Minor refactoring.Jeff Ames1-2/+5
2008-03-18Since we don't yet have a reliable way to release the lock that prevents a ↵Teravus Ovares1-1/+1
user from logging in a second time if they're already registered as logged in; * If a user logs in and they are noted as agentOnline. Set agentOnline = false and send a 'you're already logged in' message to the user asking them to wait 5 minutes. These 5 minutes are not enforced (because there's no foolproof interlock release yet without the grid operator getting a support call for every little sim crash). When the user gets the message, they can log-in immediately after it, but the user can expect weird results if they don't wait 5 minutes and log-in to the region they were in previously.
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-18Formatting cleanup.Jeff Ames1-87/+76
2008-03-18Building on Joha's update...Teravus Ovares1-3/+19
* 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.
2008-03-18Last position will be stored in the DB on logout, and the avatar can ↵Johan Berntsson1-0/+4
continue from the same position in the next login (only with MySQL at the moment)
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2008-02-13Clean up more unnecessary String.Format callsJeff Ames1-4/+2
2008-02-05Converted logging to use log4net.Jeff Ames1-26/+18
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-04Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey1-12/+6
2008-01-25* Add very basic initial login stats to the user serverJustin Clarke Casey1-2/+24
* 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
2008-01-19checking return code may make failed teleports fail more gracefully.Brian McBee1-0/+5
2008-01-15* Mother of all commits:Adam Frisby1-22/+22
* 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.
2008-01-10* Just an update to the default login formTeravus Ovares1-3/+3
2008-01-10* After fighting with it a bit more, Opensim is now compatible with the most ↵Teravus Ovares1-31/+30
recent release client(RC) on the linden labs download page. * Don't forget, you need -loginuri *and* -loginpage * Ex: -loginpage http://10.1.1.2:8002/?method=login -loginuri http://10.1.1.2:8002/ * The ?method=login is important, don't forget to add it * If you customize your http_loginform.html file, be sure to keep the form post address as is.
2008-01-09* This update enables the web_login method.Teravus Ovares1-14/+134
* Remember, the client doesn't support web_login to other grids in the current RC, however the next RC will.
2008-01-09* This may be broken.. it hasn't been tested, however I wanted to get the ↵Teravus Ovares1-4/+145
last database changes in before sdauge changes them significantly.
2008-01-05* Applying jhurliman's LLSD login enablement patch.Teravus Ovares1-0/+132
* 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)
2007-12-31Make it possible for new inventory 'libraries' to be added without changing ↵Justin Clarke Casey1-0/+1
the default OpenSimLibrary files. Additional library folders and items can be added in a separate directory and linked in by an entry to inventory/Libraries.xml
2007-12-31* Added database and UserManagerBase glue for FriendsList managementTeravus Ovares1-0/+15
* Don't forget to run prebuild
2007-12-31Correctly output library inventory folder type and version informationJustin Clarke Casey1-3/+3
2007-12-31Standard library folders can now be configued in the xml in ↵Justin Clarke Casey1-21/+29
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.
2007-12-30Add an extra check that we don't create new inventory folders for a user ↵Justin Clarke Casey1-1/+2
that already has a root folder
2007-12-27* Optimized usingslbsa711-13/+12
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-27Move hardcoded texture library inventory items out into OpenSimLibrary/xml. ↵Justin Clarke Casey1-0/+1
However, even before these change the five textures moved are not displaying (which is why default cubes are coming up as grey plywood unless you happen to have that texture cached). These were working before so they must have broken in the last month. Might be something to do with the fact that these identify (using file under linux) as jpeg2000 files, while all the other working textures identify simply as data.
2007-12-20Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames1-8/+8
Works with LibSL rev>1532
2007-12-16Clean up the Login message on UserServer console justCharles Krinke1-1/+2
before CustomizeResponse is called (this one redundant).
2007-12-16Reposition 'user profile not found' messages to stop spurious messages ↵Justin Clarke Casey1-0/+6
caused by other usermanager usage This should stop the regular spurious messages in the grid user console
2007-12-04* More console message fixesAdam Frisby1-2/+2
* Tagged Verbose("msg",...) as obsolete. Please use Verbose("AREA","msg",...) instead.
2007-12-04* Removed 12 compiler warnings.Adam Frisby1-1/+0
2007-11-30return of the inv-lib-root patch from Justin Casey (IBM)Sean Dague1-0/+7
Should fix libsl login ability. No long breaks my login to test environment.
2007-11-30* This extends my first hack to clear out the useragent table for that ↵Teravus Ovares1-1/+1
specific user. * This helps people who have multiple records in their useragent table. * This update should be looked at.. because really what it should be doing is initiating a grid wide logoff.
2007-11-30* Temporary fix for 'User already online' issue in standalone mode.Teravus Ovares1-0/+5
* Revert this once we get a working logoff.