diff options
author | Justin Clarke Casey | 2008-04-14 18:43:23 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-14 18:43:23 +0000 |
commit | b7ae8701ce6881991fbacf28cdbb0d09f220f6ec (patch) | |
tree | 39247c37f31b9ad774a47e660eb9d314ef4c4582 /OpenSim/Region/ClientStack | |
parent | * Fixed a few warnings. (diff) | |
download | opensim-SC_OLD-b7ae8701ce6881991fbacf28cdbb0d09f220f6ec.zip opensim-SC_OLD-b7ae8701ce6881991fbacf28cdbb0d09f220f6ec.tar.gz opensim-SC_OLD-b7ae8701ce6881991fbacf28cdbb0d09f220f6ec.tar.bz2 opensim-SC_OLD-b7ae8701ce6881991fbacf28cdbb0d09f220f6ec.tar.xz |
* Working towards notifying the client if the inventory service has failed, rather than simply returning 0 items.
* This is very early support which would only be triggered in a rather unlikely case (if the user server correctly received an inventory skeleton, but later on failed to return the whole inventory in a timely manner. Also, this only applies to the 1.19.1.4 client onwards
* Code cleanup and support for other failure cases (failure of inventory caching on region crossing, failure to actually add a folder/item, etc, should follow.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index 2599456..6ba40df 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -1576,7 +1576,8 @@ namespace OpenSim.Region.ClientStack | |||
1576 | } | 1576 | } |
1577 | 1577 | ||
1578 | /// <summary> | 1578 | /// <summary> |
1579 | /// | 1579 | /// Send an alert message to the client. On the Linden client (tested 1.19.1.4), this pops up a brief duration |
1580 | /// blue information box in the bottom right hand corner. | ||
1580 | /// </summary> | 1581 | /// </summary> |
1581 | /// <param name="message"></param> | 1582 | /// <param name="message"></param> |
1582 | public void SendAlertMessage(string message) | 1583 | public void SendAlertMessage(string message) |
@@ -1587,10 +1588,12 @@ namespace OpenSim.Region.ClientStack | |||
1587 | } | 1588 | } |
1588 | 1589 | ||
1589 | /// <summary> | 1590 | /// <summary> |
1590 | /// | 1591 | /// Send an agent alert message to the client. |
1591 | /// </summary> | 1592 | /// </summary> |
1592 | /// <param name="message"></param> | 1593 | /// <param name="message"></param> |
1593 | /// <param name="modal"></param> | 1594 | /// <param name="modal">On the linden client, if this true then it displays a one button text box placed in the |
1595 | /// middle of the window. If false, the message is displayed in a brief duration blue information box (as for | ||
1596 | /// the AlertMessage packet).</param> | ||
1594 | public void SendAgentAlertMessage(string message, bool modal) | 1597 | public void SendAgentAlertMessage(string message, bool modal) |
1595 | { | 1598 | { |
1596 | AgentAlertMessagePacket alertPack = (AgentAlertMessagePacket)PacketPool.Instance.GetPacket(PacketType.AgentAlertMessage); | 1599 | AgentAlertMessagePacket alertPack = (AgentAlertMessagePacket)PacketPool.Instance.GetPacket(PacketType.AgentAlertMessage); |