* Transfer timeout support for uploads. This code will be deprecated soon though as CAPS uploading is almost finished
* More parameters to HTTPBase and Capabilities for making special requests * Renamed InventoryManager callbacks to match the rest of libsecondlife * Several new InventoryManager functions, not complete yet! * Fix for null buddy list on login * OnSimConnecting returns a bool to allow canceling sim connections * NetworkManager.Connect() properly returns null on a failure git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1393 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -62,7 +62,7 @@ namespace libsecondlife
|
||||
|
||||
public new void MakeRequest()
|
||||
{
|
||||
base.MakeRequest(new byte[0]);
|
||||
base.MakeRequest(new byte[0], null, Simulator.udpPort, null);
|
||||
}
|
||||
|
||||
protected override void Log(string message, Helpers.LogLevel level)
|
||||
@@ -89,7 +89,7 @@ namespace libsecondlife
|
||||
else if (exception != null && exception.Message.Contains("502"))
|
||||
{
|
||||
// These are normal, retry the request automatically
|
||||
MakeRequest(state.RequestData);
|
||||
MakeRequest(state.RequestData, "application/xml", Simulator.udpPort, null);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user