| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
If we don't do this then viewer 2.8 crashes.
Resolves http://opensimulator.org/mantis/view.php?id=5510
|
|
|
|
| |
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.
|
|\ |
|
| |
| |
| |
| | |
OpenSim.Tests.Common instead
|
|/
|
|
| |
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
|
| |
|
| |
|
|\ |
|
| |
| |
| |
| | |
instance methods since it didn't make sense to use anything other than the instance themselves.
|
|/ |
|
|
|
|
| |
setting the ContentLength of the response. That comes up to OpenSim as ContentLength=-1, which made the existing test fail.
|
| |
|
| |
|
| |
|
|
|
|
| |
that that obsolete function is not catching 404's as it should...
|
| |
|
| |
|
|
|
|
| |
failed. See comment in WebUtil.
|
|
|
|
| |
more piece of data that seems to be required -- agent flags, which seem to be different in Viewer 2. WARNING: changes IClientAPI.
|
|\ |
|
| | |
|
|/ |
|
|\ |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
actually used since being superseded by the connector architecture in 0.7
|
| |
| |
| |
| |
| | |
Adding ssl support for "Out of Band" applications such as the remote
admin module or Robust services
|
|/ |
|
|\ |
|
| |
| |
| |
| | |
long time on certain versions of mono. It's better to abort them if they take too long. So timeout is now an argument. Currently: 20secs for CreateAgent, 100secs for UpdateAgent (fat), 10 secs for UpdateAgent (Position); all of these divided by 4, for ReadWrite, as Mic had before.
|
|\ \
| |/ |
|
| | |
|
| |
| |
| |
| | |
it was _way_ too low and is probably making writes abort in the middle.
|
| | |
|
|/ |
|
|
|
|
| |
the agent and all attachments. Preserves backwards compatibility -- older sims get passed attachments one by one. Meaning that I finally introduced versioning in the simulation service.
|
| |
|
|
|
|
| |
quite some time.
|
|\ |
|
| | |
|
| |
| |
| |
| | |
hosters to setup regions maintaining more control over system resources.
|
| | |
|
| |
| |
| |
| | |
of not all prims being sent without reprioritization.
|
| |
| |
| |
| |
| |
| | |
and currently used for all of an avatars attachments by the other
policies. Also changed the way items are pulled from the update queues
to bias close objects even more.
|
| |
| |
| |
| |
| |
| | |
command to look at the entity update priority queue. Added a "name" parameter
to show queues, show pqueues and show throttles to look at data for a specific
user.
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
See http://opensimulator.org/mantis/view.php?id=5336
It turns out that viewer 2 was upset by the lack of a response to viv_watcher.php. This would send it into a continuous login loop.
Viewer 1 was quite happy to ignore the lack of response.
This commit puts in the bare minimum 'OK' message in response to viv_watcher.php. This allows viewer 2 voice to connect and appears to work.
However, at some point we need to fill out the watcher response, whatever that is.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
per Melanie's very good suggestion. The immediate queue is
serviced completely before all others, making it a very good
place to put avatar updates & attachments.
Moved the priority queue out of the LLUDP directory and
into the framework. It is now a fairly general utility.
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Often, by the time the UDPServer realizes that an entity update packet
has not been acknowledged, there is a newer update for the same entity
already queued up or there is a higher priority update that should be
sent first. This patch eliminates 1:1 packet resends for unacked entity
update packets. Insteawd, unacked update packets are decomposed into the
original entity updates and those updates are placed back into the
priority queues based on their new priority but the original update
timestamp. This will generally place them at the head of the line to be
put back on the wire as a new outgoing packet but prevents the resend
queue from filling up with multiple stale updates for the same entity.
This new approach takes advantage of the UDP nature of the Linden protocol
in that the intent of a reliable update packet is that if it goes
unacknowledge, SOMETHING has to happen to get the update to the client.
We are simply making sure that we are resending current object state
rather than stale object state.
Additionally, this patch includes a generalized callback mechanism so
that any caller can specify their own method to call when a packet
expires without being acknowledged. We use this mechanism to requeue
update packets and otherwise use the UDPServer default method of just
putting expired packets in the resend queue.
|