* 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:
John Hurliman
2007-09-10 10:20:30 +00:00
parent 9dccf908da
commit 62dddabd7c
12 changed files with 986 additions and 529 deletions

View File

@@ -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;
}