aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Hypergrid (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-11-02Plumb the rest of the context stuff. Well, what I see so far anywayMelanie Thielker2-2/+2
2015-07-31Eliminated several warningsOren Hurvitz2-0/+4
2014-07-21Close streams immediately when we finish using themOren Hurvitz1-16/+4
2014-04-09In teleports, pass the source region to the destination (similar to an HTTP ↵Oren Hurvitz2-4/+6
referrer)
2014-04-06When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz1-1/+8
entering the grid. This can affect which region to use. E.g., returning users may be allowed to enter any region, whereas users from other grids will have to enter a gateway region. Previously per-user decisions were only made later, but by then it's too late to change which region the user enters.
2014-04-03When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz1-1/+8
case of error
2014-01-24varregion: pass region size in more HG services.Robert Adams2-1/+5
2013-08-17Remove some mono compiler warnings from OpenSim/Server/HandlersJustin Clark-Casey (justincc)2-6/+2
2013-07-08Add "show caps stats by user" and "show caps stats by cap" console commands ↵Justin Clark-Casey (justincc)3-2/+3
to print various counts of capability invocation by user and by cap This currently prints caps requests received and handled, so that overload of received compared to handled or deadlock can be detected. This involves making BaseStreamHandler and BaseOutputStream record the ints, which means inheritors should subclass ProcessRequest() instead of Handle() However, existing inheriting classes overriding Handle() will still work, albeit without stats recording. "show caps" becomes "show caps list" to disambiguate between show caps commands
2013-06-21Finally moved HG agent transfers to use agent fatpacks.Diva Canto3-154/+50
2013-05-13Fixed mantis #6609 -- LoadPlugin error messages on Robust.Diva Canto3-4/+18
2012-07-13Rather than instantiating a UTF8 encoding everywhere when we want to supress ↵Justin Clark-Casey (justincc)1-4/+2
the BOM, use a single Util.UTF8NoBomEncoding. This class is thread-safe (as evidenced by the provision of the system-wide Encoding.UTF8 which does not suppress BOM on output).
2012-05-03Remove the somewhat misleading logging of the string length of some unknown ↵Justin Clark-Casey (justincc)1-1/+2
requests, as this appeared to be some kind of numbered error code. This brings these messages into line with similar messages that did not do this.
2012-03-21HG Friends: reroute the status notifications to the HGFriends service, so ↵Diva Canto2-0/+57
that they can scale better. They were previously being handled by the UAS; that is still there, but it's now obsolete and will be removed in a future release.
2012-03-21Removed extraneous debug messageDiva Canto1-1/+0
2012-03-20HG Friends: allow the establishment of HG friendships without requiring ↵Diva Canto3-57/+133
co-presence in the same sim. Using avatar picker, users can now search for names such as "first.last@grid.com:9000", find them, and request friendship. Friendship requests are stored if target user is offline. TESTED ON STANDALONE ONLY.
2012-03-17Added GetUUID(first, last) on UserAgentsService so that we can finally make ↵Diva Canto1-2/+30
direct user connections.
2012-01-03Profile UpdatesBlueWall1-0/+33
Update basic profile to use the replaceable interface, making configuration less error-prone. Add support to query avatar's home user account and profile service for regions usng the updated OpenProfileModule with Hypergrid.
2011-12-16HG minor bug fix and marked one method obsolete in UAS.Diva Canto1-0/+1
2011-12-05Implement IOSHttpRequest and IOSHttpResponse http interfaces and use instead ↵Justin Clark-Casey (justincc)2-5/+5
of OSHttpRequest/OSHttpResponse. This is required for the substitution of different HTTP servers or the newer HttpServer.dll without having to commit to a particular implementation. This is also required to write regression tests that involve the HTTP layer. If you need to recompile, all you need to do is replace OSHttpRequest/OSHttpResponse references with IOSHttpRequest/IOSHttpResponse.
2011-12-04HG: Added HEAD method to Helo service. This is the preferred method, but its ↵Diva Canto1-1/+33
wide use will have to wait a few releases. So the sims are still calling GET for now.
2011-12-04HG: Renamed one methodDiva Canto1-1/+1
2011-11-19Remove mono compiler warnings. Fix problem with co-ordinate given in ↵Justin Clark-Casey (justincc)1-2/+0
deregister region message
2011-06-07This hopefully fixes all issues with online/offline notifications across ↵Diva Canto1-3/+13
grids. http://opensimulator.org/mantis/view.php?id=5528
2011-06-07This fixes the crash reported in ↵Diva Canto1-12/+12
http://opensimulator.org/mantis/view.php?id=5529 related to sending IMs to foreign friends who are offline. Hopefully.
2011-06-02HG IM bug fix: grid_instant_message was being placed in the default port ↵Diva Canto1-2/+1
instead of the specified one.
2011-06-02Extra debug messageDiva Canto1-0/+1
2011-05-27HG lures working! Friends can offer friends HG teleports via the profile. ↵Diva Canto1-41/+4
WARNING: additional configuration for HG inis -- see *Common.ini.example
2011-05-27Avoid a scary warning message about null replies from the user agent service.Diva Canto1-0/+4
2011-05-26Commented a few extra debug messages.Diva Canto1-4/+1
2011-05-26HG IM in grid mode working fairly well. Unknown target user references ↵Diva Canto1-7/+50
looked back in source user's User Agent service.
2011-05-25HG: Instant Message working. Tested on HG standalones only. Needs a lot more ↵Diva Canto2-0/+328
testing.
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto1-1/+31
window, but can't test because this mechanism doesn't seem to work without a profile service.
2011-05-23HG friends: Status notifications working. Also initial logins get the online ↵Diva Canto2-1/+87
friends in other grids.
2011-05-22More on HG Friends. Added Delete(string, string) across the board. Added ↵Diva Canto1-2/+41
security to friendship identifiers so that they can safely be deleted across worlds. Had to change Get(string) to use LIKE because the secret in the identifier is not always known -- affects only HG visitors. BOTTOM LINE SO FAR: HG friendships established and deleted safely across grids, local rights working but not (yet?) being transmitted back.
2011-05-21Fixed permissions bug related to friends in PermissionsModule. Added ↵Diva Canto1-37/+75
FriendsData[] GetFriends(string principalID) to IFriendsData and FriendInfo[] GetFriends(string PrincipalID) to IFriendsService. Refactored some more in the FriendsModule. Made client get notification of local friends permissions upon HGLogin. HG Friends object permissions work.
2011-05-19HG Friends working to some extent: friendships offered and accepted ↵Diva Canto2-0/+313
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
2011-05-08Enable compressed (gzip) fatpack transfers.Melanie2-5/+3
2011-05-08Enable compressed (gzip) fatpack transfers.Melanie2-5/+3
2011-01-21remove some mono compiler warnings and unnecessary dictionary instantiationsJustin Clark-Casey (justincc)3-7/+8
2011-01-17Account for some component along the way lower-casing the HTTP header keys. ↵Diva Canto1-8/+13
(XFF header issue)
2011-01-17More debug messages to help track the XFF header problem.Diva Canto1-0/+2
2011-01-09Improved debug messages to track what is going on with the XFF headerDiva Canto1-0/+2
2010-10-22Revert "Merge remote branch 'otakup0pe/mantis5110'"Justin Clark-Casey (justincc)1-9/+1
This reverts commit 21187f459ea2ae590dda4249fa15ebf116d04fe0, reversing changes made to 8f34e46d7449be1c29419a232a8f7f1e5918f03c.
2010-10-22Revert "* more url / hg cleanup"Justin Clark-Casey (justincc)1-2/+0
This reverts commit 58f75fa19d9aea18283ecdbd44559efb81781c9d.
2010-10-21* change the data exchanged within hypergrid transactionsJonathan Freedman1-2/+8
2010-10-20* more url / hg cleanupJonathan Freedman1-0/+2
2010-10-11* more url / hg cleanupJonathan Freedman1-0/+2
2010-10-03Made the home agent handler check for xff if behind a proxy.Diva Canto2-3/+23
2010-10-03Made the Gatekeeper proxy-able.Diva Canto2-2/+7