aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Clean up more unnecessary String.Format callsJeff Ames2008-02-131-4/+2
|
* Converted logging to use log4net.Jeff Ames2008-02-051-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.
* Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey2008-02-041-12/+6
|
* * Add very basic initial login stats to the user serverJustin Clarke Casey2008-01-251-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
* checking return code may make failed teleports fail more gracefully.Brian McBee2008-01-191-0/+5
|
* * Mother of all commits:Adam Frisby2008-01-151-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.
* * Just an update to the default login formTeravus Ovares2008-01-101-3/+3
|
* * After fighting with it a bit more, Opensim is now compatible with the most ↵Teravus Ovares2008-01-101-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.
* * This update enables the web_login method.Teravus Ovares2008-01-091-14/+134
| | | | | * Remember, the client doesn't support web_login to other grids in the current RC, however the next RC will.
* * This may be broken.. it hasn't been tested, however I wanted to get the ↵Teravus Ovares2008-01-091-4/+145
| | | | last database changes in before sdauge changes them significantly.
* * Applying jhurliman's LLSD login enablement patch.Teravus Ovares2008-01-051-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)
* Make it possible for new inventory 'libraries' to be added without changing ↵Justin Clarke Casey2007-12-311-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
* * Added database and UserManagerBase glue for FriendsList managementTeravus Ovares2007-12-311-0/+15
| | | | | * Don't forget to run prebuild
* Correctly output library inventory folder type and version informationJustin Clarke Casey2007-12-311-3/+3
|
* Standard library folders can now be configued in the xml in ↵Justin Clarke Casey2007-12-311-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.
* Add an extra check that we don't create new inventory folders for a user ↵Justin Clarke Casey2007-12-301-1/+2
| | | | that already has a root folder
* * Optimized usingslbsa712007-12-271-13/+12
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* Move hardcoded texture library inventory items out into OpenSimLibrary/xml. ↵Justin Clarke Casey2007-12-271-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.
* Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames2007-12-201-8/+8
| | | | Works with LibSL rev>1532
* Clean up the Login message on UserServer console justCharles Krinke2007-12-161-1/+2
| | | | | before CustomizeResponse is called (this one redundant).
* Reposition 'user profile not found' messages to stop spurious messages ↵Justin Clarke Casey2007-12-161-0/+6
| | | | | | | | caused by other usermanager usage This should stop the regular spurious messages in the grid user console
* * More console message fixesAdam Frisby2007-12-041-2/+2
| | | | | * Tagged Verbose("msg",...) as obsolete. Please use Verbose("AREA","msg",...) instead.
* * Removed 12 compiler warnings.Adam Frisby2007-12-041-1/+0
|
* return of the inv-lib-root patch from Justin Casey (IBM)Sean Dague2007-11-301-0/+7
| | | | | | | | Should fix libsl login ability. No long breaks my login to test environment.
* * This extends my first hack to clear out the useragent table for that ↵Teravus Ovares2007-11-301-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.
* * Temporary fix for 'User already online' issue in standalone mode.Teravus Ovares2007-11-301-0/+5
| | | | | * Revert this once we get a working logoff.
* revert r2510, this seems to break normal logins, at least fromSean Dague2007-11-291-7/+0
| | | | | | Linux clients.
* return an appropriate inv_lib_root, which the libsl folks haveSean Dague2007-11-291-0/+7
| | | | | | | | identified as the reason libsl can't currently connect to OpenSim. Patch from Justin Casey (IBM)
* fixed duplicate login in standalone mode (mostly untested in grid mode)Jeff Ames2007-11-291-2/+1
|
* * Fixed compile issue.Adam Frisby2007-11-091-1/+2
|
* * Added a mutex to the LoginService allowing only a single login ↵Adam Frisby2007-11-091-82/+93
| | | | | | | | simultaneously. (queues) * This is a temporary fix to prevent an issue with adjohn reported when attempting to login large numbers of users in a short period of time. * A rewritten login service is on the cards.
* * Optimized usingslbsa712007-10-301-31/+22
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-291-6/+2
| | | | | | | 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.
* * Removed plenty more untagged console messages. Everything now has shiny ↵Adam Frisby2007-10-221-2/+1
| | | | groups. :)
* * Return of R2162. /Take that SVN!/Adam Frisby2007-10-221-1/+1
|
* revert r2162 as it completely clobbered all the work onSean Dague2007-10-221-1/+1
| | | | | | | the ChatModule by MW and myself. Couldn't find Adam online after that rev went in.
* * Major ass commit.Adam Frisby2007-10-221-1/+1
| | | | | | | * Sqlite Storage Engine now supports terrain -- however be aware that every terrain revision stored will at 512KB to your database file. At the moment it is storing every revision from the first. * Fixed an issue where by noverbose mode would display lots of useless junk. Noverbose mode is now quite usable. * Fixed a whole bunch of console message issues such as naming and categorisation
* get rid of all the ^M line endingsSean Dague2007-10-191-315/+315
|
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-0/+28
|
* I broke the build and am reverting until I can get the MainLog call proper.Charles Krinke2007-10-121-283/+283
|
* Turn a few of the writelines into mainlog entries so failed logins can be ↵Charles Krinke2007-10-121-7/+7
| | | | more easily analyzed.
* getting all our line endings consistant againSean Dague2007-10-051-1/+1
|
* * So, ok, maybe renaming serialized fields on a friday wasn't the smartest ↵lbsa712007-10-051-286/+286
| | | | of things. Reverting 2056.
* * UserProfileData meets code conventionslbsa712007-10-051-286/+286
|
* == The "right name and place" commit ==lbsa712007-10-051-1/+1
| | | | | | | | | * Moved InventoryData to Framework.Types/InventoryItemBase.cs * Moved UserData to Framework.Interfaces/IUserData.cs * Moved UserProfileData to Framework/Types/UserProfileData.cs * Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round) * Changed some namespaces to reflect file structure
* Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa712007-09-271-55/+79
| | | | Tleiades patch 444 and 445.
* * Tleiades patch #445 - the inventory folders displayed does not show the ↵lbsa712007-09-271-2/+2
| | | | | | | expected folder icons Tahnx, Tleiades; keep up the good work!
* * Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa712007-09-271-79/+55
| | | | | | | * updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
* * Started major restructusing of comms to prepare for better grid and region ↵lbsa712007-09-241-0/+287
functionality * Working towards one shared set of services * Killed off two projects with very little functionality