aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Services/LoginResponse.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-07-04Fix previous commitMelanie Thielker1-0/+1
2009-07-04Add the new field agent_access_max. Without it being set to "A", viewers fromMelanie Thielker1-0/+9
1.23 prevent the removal of underwear.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-05- moving banned check and public/private check toDr Scofield1-1/+1
Scene.NewUserConnection() - adding reason reporting this enforces estate bans very early on and prevents us from circulating client objects that we'd then have to retract once we realize that the client is not allowed into the region
2009-04-04DST setting wasn't transferred to client, leading to wrong time display.Homer Horwitz1-1/+1
2009-04-01Added AllowLoginWithoutInventory to LoginService, to be overwritten in ↵diva1-4/+5
subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults.
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames1-812/+812
2009-03-29Another bit of refactoring to try to make sense of ↵diva1-812/+812
OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.
2009-03-24Added the login region's http to the login response.diva1-0/+8
2009-02-12* optimized usings.lbsa711-2/+2
2008-11-19Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker1-63/+63
libOMV.
2008-11-19Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker1-63/+63
release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
2008-11-17* Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey1-63/+63
* Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly
2008-10-01Add a user server XMLRPC method to set the MOTD and the minimum GodLevelMelanie Thielker1-0/+16
required to log in. set_login_params accepts avatar_uuid and password of a user with god level 200 or more, and allows setting either or both the login_motd or login_level
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz1-2/+10
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-14* Converted a number of methods within the login processes from private to ↵Adam Frisby1-1/+1
protected. * Made several methods virtual to allow derivative overrides. * Minor cleanups.
2008-09-07* minor: just minor doc and tidy upJustin Clarke Casey1-1/+1
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-16/+16
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-07-29Mantis#1849. Thank you kindly, Kinoc for a patch that:Charles Krinke1-2/+2
- LLSDLoginMethod should error out in similar way to XMLRPC login for already logged in condition - Have LLSDLoginMethod mirror the sequence of the XMLRPC for easier side by side compare - Log messages report which process XML or LLSD generated them for easier debugging
2008-06-27dr scofield's warning safari:Dr Scofield1-3/+3
* commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables
2008-05-16Formatting cleanup.Jeff Ames1-2/+2
2008-05-14* Minor: Fussy little wording change on inventory service failureJustin Clarke Casey1-1/+1
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-2/+2
with namespaces.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-2/+3
(this took a while to run).
2008-04-20* Remove user profile from cache when they log out from a region.Justin Clarke Casey1-1/+1
* A much more significant fix is required to clean up the cache when a user moves out of a region, but really better handling of delayed inventory cache updates needs to be written first, and possibly better affinity to cut down agent inventory requests when the move is between two regions hosted on the same server.
2008-04-20* Tweak inventory login failure message to point to the region owner as ↵Justin Clarke Casey1-2/+1
first point of call rather than the grid owner
2008-04-15* Send a meaningful response to both the user server console and the client ↵Justin Clarke Casey1-0/+13
if a login fails because the inventory service has failed.
2008-03-28Applied patch from mantis# 825, thanks A_BiondiMW1-13/+26
2008-03-18Formatting cleanup. Minor refactoring.Jeff Ames1-3/+7
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-02-20Minor cleanup.Jeff Ames1-33/+33
2008-02-14Fix a casting subtlety in moving to constants. Logins should workSean Dague1-2/+2
again.
2008-02-14* Made new Framework.Constants class, added RegionSize member.Adam Frisby1-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.
2008-02-05Converted logging to use log4net.Jeff Ames1-8/+6
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-01-15* Mother of all commits:Adam Frisby1-1/+1
* 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-05* Applying jhurliman's LLSD login enablement patch.Teravus Ovares1-1/+160
* 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-27* Optimized usingslbsa711-3/+3
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-20Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames1-4/+4
Works with LibSL rev>1532
2007-12-06removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames1-2/+2
2007-11-30return of the inv-lib-root patch from Justin Casey (IBM)Sean Dague1-1/+9
Should fix libsl login ability. No long breaks my login to test environment.
2007-11-29revert r2510, this seems to break normal logins, at least fromSean Dague1-9/+1
Linux clients.
2007-11-29return an appropriate inv_lib_root, which the libsl folks haveSean Dague1-1/+9
identified as the reason libsl can't currently connect to OpenSim. Patch from Justin Casey (IBM)
2007-11-14Another try: Fix moon bleeding over into linden grid. Need to clear your ↵Brian McBee1-2/+2
cache to fix it.
2007-11-13Some work on being able to set/send a users Buddylist info. (added handling ↵MW1-1/+63
code to LoginResponse). And as a test each user signing in will get the test account ("Mr OpenSim") as a friend (online/offline status will not currently show up)
2007-10-30* Optimized usingslbsa711-383/+211
* Shortened type references * Removed redundant 'this' qualifier
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-0/+29
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-35/+13
Tleiades patch 444 and 445.
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-13/+35
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)