aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-09-17 let mesh model estimator work even without money module, so otherUbitUmarov1-22/+22
estimations can work
2012-09-17Make use of mesh cost functionsUbitUmarov2-24/+13
2012-09-17 missing file for suport of mesh upload costUbitUmarov1-0/+596
2012-09-17Remove spammy "axislock" debug.Melanie1-1/+1
2012-09-16Change the close tmeout from 2 to 3 seconds on teleport. This mayMelanie1-1/+1
prevent being logged out after a successful teleport.
2012-09-16Make IncomingCloseChildAgent not send a stop packet. This may preventMelanie1-1/+1
a viewer from being logged out after an otherwise successful teleport.
2012-09-16Make the agent being kicked a child agent first so there won't be a ghostMelanie1-1/+2
2012-09-14Revamp the HTTP textures handler to allow a maximum of four fetchesMelanie1-44/+179
at any time and to drop requests for avatars n longer in the scene
2012-09-14Allow some more connections to try to ease lag.Melanie2-2/+4
2012-09-14Wait longer for arrival cofirmation to aid tps into laggy regionsMelanie1-2/+2
2012-09-14Wait a bit longer for new scene presences to aid tps into laggy regionsMelanie1-1/+1
2012-09-12Add a logger so the prior commit will workMelanie1-0/+3
2012-09-12Stop expiry timer when upload is complete. Log if timeout is reached.Melanie1-0/+2
2012-09-12Add a timer to time out upload caps handlers that are not used.Melanie1-0/+12
2012-09-11Add a missing brace, remove a useless temp variable, enable charging.Melanie1-6/+3
2012-09-11 report mesh upload costs ( fake values)UbitUmarov1-2/+46
2012-09-11 let LLSDAssetUploadRequest include asset_resources information plus letUbitUmarov1-0/+1
NewAgentInventoryRequest know about mesh (does nothing with it still)
2012-09-11Removing the variable prica handler again. It's never called, was misnamed andMelanie1-332/+0
probably never worked past the mesh beta.
2012-09-11Re-add the module and fix a typoMelanie1-0/+332
2012-09-11Rename NewFileAgentInventoryVariablePrice to NewAgentInventoryVariablePriceMelanie1-332/+0
which is the name actually used in viewer code.
2012-09-11Add cost calculation suppor tto the VariablePrice one as wellMelanie2-9/+44
2012-09-11Revert "Remove the unused NewFileAgentInventoryVariablePrice module."Melanie1-0/+296
It's actually used. This reverts commit 94a8e5572b1529190a174f29f866b65e7b2ccc0e.
2012-09-11Add the option to have variable costing for uploadsMelanie2-9/+46
2012-09-11Remove the unused NewFileAgentInventoryVariablePrice module.Melanie1-296/+0
2012-09-11Revamp the v3 inventory sending. Uses threads and some nifty mechanics toMelanie1-81/+117
leverage the Poll Service without blocking it's workers.
2012-09-10webFetchInventory: change control event to simple flag, adjust lockingUbitUmarov1-11/+32
2012-09-10Remove commented codeMelanie1-11/+0
2012-09-09Reduce max concurrent endpoint connections from 50 to 6 (was 2 before)Melanie1-1/+1
2012-09-09Catch zero UUIDs in LSL and shout as an error. Also catch attempts to send IMMelanie2-1/+4
to UUID.Zero because it ties up XMLRPC handlers needlessly.
2012-09-08 llClientView: try to have only one thread per client processingUbitUmarov1-4/+49
RegionHandleRequests. (code assumes packet handle is called async as it is not)
2012-09-07Set the maximum number of concurrent connections to a service endpointMelanie1-0/+2
to 50. This doesn't work on stock mono but it works in Avination and also under Windoze.
2012-09-07 One more redundante ParcelProprieties on loginUbitUmarov1-0/+2
2012-09-07 stop sending duplicated parcelProprieties at loginUbitUmarov1-18/+39
2012-09-07remove fireandforget call to EnableChildAgents at end on CompleteMovement,UbitUmarov1-1/+3
since this is already on own thread and its at the end of it.
2012-09-04Make friend notifies and closing child agents async because both canMelanie1-1/+1
block the heartbeat thread if the sim being contacted is unresponsive
2012-09-04 bug fixUbitUmarov1-4/+6
2012-09-04 a forgotten file plus minor changes. Imp and SL viewer seem to preserveUbitUmarov3-3/+11
flight. FS 4.2.2 does not.
2012-09-04 let avatar keep flying in tps to same region. (still bad for otherUbitUmarov1-0/+6
regions )
2012-09-04Remove debug spamMelanie1-6/+6
2012-09-04Refactor avatar transfer so that the heavy (UpdateAgent) part is separated intoMelanie3-97/+113
it's own sub-method
2012-09-03Prevent a nullref if SimStatsReporter tries to report on a sim where psysics areMelanie1-14/+17
not yet initialized
2012-09-01 try to reduce potencial recursive lockingUbitUmarov1-26/+51
2012-08-30move keyframemotion.copy from sop.copy to sog.copy, where there isUbitUmarov3-4/+8
newgroup information avaiable.
2012-08-30[possible still bad] make use of keyframemotion.copy on sop.copy, replacingUbitUmarov3-35/+38
fromdata(seralize). for now its called with null group since sop.copy() hasn't usable new group information, so for copied keyframes be fully operational UpdateSceneObject(newgroup) needs to be called on them.
2012-08-30Sequence inventory descendents requests to reduce inventory server load andMelanie2-5/+56
movement lag.
2012-08-29Allow llList2Key to also act on System.StringMelanie1-1/+2
2012-08-29Fix issue with the quit packet being stuck int he queue and a one packet delay.Melanie1-2/+8
Also fix semaphore excetion caused by enqueueing while dequque is taking place.
2012-08-29Remove Justin's addition to avoid sending incoming packets to inactive clientsMelanie1-9/+9
This also causes the initial AgentUpdate to be rejected because our processing is asynchronous.
2012-08-29 A few more changes to keyframesUbitUmarov3-64/+116
2012-08-29[Potentially broken] keyframes changes.. since it's there, use timer forUbitUmarov1-115/+165
crossing retries and not still another thread, etc...