aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/CommunicationsManager.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * test: Extend take object test to finally check that the object made it ↵Justin Clarke Casey2008-11-281-1/+1
| | | | into user inventory and that it was removed from the scene
* * refactor: rename UserServiceAdmin to UserAdminServiceJustin Clarke Casey2008-11-281-3/+3
|
* * refactor: move ResetUserPassword into UserServiceAdminJustin Clarke Casey2008-11-281-12/+0
|
* * refactor: move CreateUser into UserServiceAdminJustin Clarke Casey2008-11-281-58/+5
|
* * test: Add the ability to add a plugin directory to the user and inventory ↵Justin Clarke Casey2008-11-271-1/+0
| | | | | | | | services in order to extend unit tests for user and inventory information * I can't spend any longer in trying to get Mono.Addins to work with the unit tests, so this is not a proper plugin at this time
* Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke2008-11-231-4/+16
| | | | | | | | This patch adds the option of adding the email when you create a new user. This works in Gridmode as none Gridmode. This option is also added to RemoteAdminPlugin. With a new handler you can create a user with a email.
* Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz2008-11-011-0/+21
| | | | | | | | | | | | | | on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs.
* Adding AddXmlRpcHandler(name, method, bool) to selectively disableDr Scofield2008-10-231-0/+8
| | | | | | | | | | | | | KeepAlive for certain XmlRpc handlers. Making use of new AddXmlRpcHandler method in RemoteAdminPlugin to avoid clients waiting indefinitely for response. taking note of BaseHttpServer parameter in CommunicationsManager constructor (was passed it but then just ignored so far).
* * In Standalone, add a persistant account for the OGP user.Teravus Ovares2008-09-251-0/+18
| | | | | * Gridmode, this has no effect at all.
* * Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey2008-09-191-5/+4
| | | | | | | | | startup (script startup doesn't count here) * There was a small window where region logins were allowed before modules were loaded - avatars logins that hit this window could have caused bad things to happen. * A similar change will follow for grid mode sometime soon
* * refactor: collapse UpdateUserProfileProperties() into existing ↵Justin Clarke Casey2008-09-151-1/+1
| | | | | | | | UpdateUserProfile * the methods were identical except that the Properties one did a check for the user profile beforehand. However, every caller was doing this already anyway.
* * refactor: Break out IUserServiceAdmin out of IUserService since admin ↵Justin Clarke Casey2008-09-151-2/+7
| | | | methods don't need to be implemented on Grid hosted region servers
* * Add "reset user password" command to standalone region consoleJustin Clarke Casey2008-09-151-0/+12
| | | | | | * Grid user server implementation to follow shortly
* * Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey2008-09-121-1/+13
| | | | | | | | | * This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-17/+17
| | | | | | | * 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.
* Formatting cleanup.Jeff Ames2008-08-181-16/+16
|
* * refactor: move create user console command parsing down to OpenSim.cs from ↵Justin Clarke Casey2008-07-291-46/+1
| | | | CommunicationsManager
* * minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey2008-07-241-4/+4
| | | | than inter grid
* * refactor: break out inter grid inventory services furtherJustin Clarke Casey2008-07-231-17/+26
| | | | | | * more to follow
* The new secure inventory server mode (in r5590) can now be disabled from ↵Johan Berntsson2008-07-231-2/+50
| | | | OpenSim.ini. Default is to use the new mode.
* thanks lulurun for a security patch that blocks unathorized access to the ↵Johan Berntsson2008-07-231-0/+6
| | | | inventory server (see http://opensimulator.org/wiki/Security_vulnerability_brought_by_non-check_inventory_service)
* added experimental packet tracker (LLPacketTracker.cs), which can be told to ↵MW2008-07-211-3/+0
| | | | | | | | track a packet and if it hasn't been acked within a set time, trigger a IClientAPI event, that the application/scene can handle. Currently only terrain packet tracking is finished, Tracking for initial Prim packets (first full update for a prim) is being worked on. Future improvements would be to make it a more generic packet tracker with callback delegates instead of events. Add a test event handler (which would fire after a minute if a terrain packet hadn't been acked) to scene to handle the OnUnackedTerrain event, which currently just resends the terrain patch. The idea of this packet tracking is for the region level application to be able to know if the client stack gave up on sending a packet.
* changes prompting of create user console command to only ask for unspecified ↵Dahlia Trimble2008-07-051-12/+16
| | | | parameters and avoid an exception if the wrong number of parameters are supplied
* patch and files from mantis #1630, Thanks MelanieMW2008-06-291-1/+1
|
* Extracted the Avatar appearance functions out of the IUserService interface ↵MW2008-06-281-0/+7
| | | | | | | and moved them into a IAvatarService Although "out of the box", there is no actual functional change to behavior
* plumbing for multiple inventory servers. Mostly done on the region server side. MW2008-06-281-7/+65
| | | | | | TODO next is to make the login server read/write a users inventory from the correct server (the inventory url set in a userprofile) On the region side, although not tested with multiple servers it should work if that inventory url was set, and the inventory servers urls have been added to the CommunicationsManager, using CommunicationsManager.AddInventoryService(string hostUrl)
* dr scofield's warning safari:Dr Scofield2008-06-271-1/+1
| | | | | | | | | | * 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
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-301-7/+7
|
* * Caches UUIDName requestsTeravus Ovares2008-05-291-9/+52
| | | | | | * Looks up UUIDNames for script time and colliders in a separate thread. * Hopefully this'll allow you to look at top scripts on a region that has a lot of scripts without crashing your client thread.
* Formatting cleanup.Jeff Ames2008-05-161-1/+1
|
* * For your fragging desire, damage enabled land works, but watch out!, life ↵Teravus Ovares2008-05-031-0/+13
| | | | does not regenerate until you're dead!
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-1/+3
| | | | (this took a while to run).
* further renaming of properties for claritySean Dague2008-04-101-3/+3
|
* moved fields to properties for UserDataProfile, which wasSean Dague2008-04-101-5/+5
| | | | | | | actually a little more work than I expected given the copious use of out params.
* further refactor and rename of InventoryFolderBase propertiesSean Dague2008-04-081-1/+1
| | | | | | to reflect what they really are.
* more refactoring, this time on InventoryFolderBaseSean Dague2008-04-071-1/+1
| | | | | | | | * wrap attributes in properties * clean up names a little bit * clean up name styles
* Formatting cleanup.Jeff Ames2008-03-181-26/+26
|
* Replaced some Console.WriteLine calls with writes to log.Jeff Ames2008-03-171-1/+4
|
* * Applying Ahzz's profile patch. Thanks Ahzz! Teravus Ovares2008-03-031-0/+6
| | | | | | * 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.
* * Do not allow a user to be created if one with the same name already existsJustin Clarke Casey2008-02-181-2/+18
|
* Moved the AgentAssetTransactionsManager (and AgentAssetTransactions) out of ↵MW2008-02-161-6/+6
| | | | | | | CommsManager and into a module (AgentAgentTransactionModule), still needs cleaning up though. But its one more thing out of the CommsManager. One day we will kill the CommsManager!
* * Refactoring: Rename AssetTransactions.cs and AssetTransactionsManager and ↵Justin Clarke Casey2008-02-121-4/+4
| | | | | | | | | align classes with file names * Small amount of ndoc * This will probably require a prebuild and nant clean
* Converted logging to use log4net.Jeff Ames2008-02-051-5/+7
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Shutting down child agents properly in neighbor regions.Teravus Ovares2008-01-211-0/+1
|
* * Added hooks for logout to all IUserService and all that implement it.Teravus Ovares2008-01-201-0/+13
| | | | | | | * 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-151-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.
* * You can add and remove a friend in standalone now within the same ↵Teravus Ovares2008-01-011-0/+43
| | | | | | | | simulator. It saves. * You can add and remove a friend in grid mode now within the same simulator. It doesn't save yet. * I got rid of Mr. OpenSim as a friend.. he bothers me /:b...
* * Optimized usingslbsa712007-12-271-3/+4
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2007-12-101-2/+2
| | | | notice of doom
* Very partial Avatar Appearance (ie, clothes/body parts) "storage". In ↵MW2007-12-021-10/+6
| | | | | | | | standalone mode it will mean that when you log off and log back on ,as long as the region server hasn't been restarted , your avatar will start with wearing the clothes that it wore on log off. In grid mode its even more limited in that wearing/removing clothes/body parts are only stored in the region server instance you are one. so if you are in a different region to your login region (which are on different region server instances), and then change clothes, those changes won't be remembered. So as said, its very limited but is a small step towards having proper appearance persist. Just need to store this data out to a database.