aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Hypergrid/HGStandaloneLoginModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-05- moving banned check and public/private check toDr Scofield1-1/+2
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-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-1/+1
2009-04-29Flipping check_session xmlrpc's keep-alive to false, because some clients hang.diva1-1/+1
2009-04-22* Fix hypergrid standalone login by overriding AddNewUserAgent in HGUserServicesJustin Clarke Casey1-3/+10
2009-04-14Adds session authentication upon NewUserConnections. Adds user key ↵diva1-1/+2
authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames1-253/+253
2009-03-29Moved some files around, so that it's easier to share code between ↵diva1-0/+1
standalone and the grid services. Should not affect any functionality.
2009-03-22Moving the LoginAuth service up, so that it can be shared among standalones ↵diva1-2/+2
and the User Server.
2009-03-21Initial support for authentication/authorization keys in UserManagerBase, ↵diva1-260/+252
and use of it in HGStandaloneLoginService (producer of initial key for user, and of subsequent keys) and HGStandaloneInventoryService (consumer of a key). Keys are of the form http://<authority>/<random uuid> and they are sent over http header "authorization".
2009-03-19* refactor: Create IHttpServer interface instead of accessing BaseHttpServer ↵Justin Clarke Casey1-3/+4
via CommunicationsManager directly
2009-03-06* minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-03-03Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW1-1/+1
it from OpenSim.Client.Linden to OpenSim.Framework.
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW1-0/+259
There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.