* Housecleaning in FriendsManager * Make sure LLSDString is never holding a null pointer * Changes to Login.cs to prepare for the LLSD switch (it is not happening yet!) * Fixed LLSD export for prims to export light/flex/sculpt data as well, importing that back in is still a TODO git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1540 52acb1d6-8a22-11de-b505-999d5b087335
23 lines
603 B
C#
23 lines
603 B
C#
using System;
|
|
using libsecondlife;
|
|
|
|
namespace libsecondlife.TestClient
|
|
{
|
|
public class PacketLogCommand : Command
|
|
{
|
|
public PacketLogCommand(TestClient testClient)
|
|
{
|
|
Name = "packetlog";
|
|
Description = "Logs a given number of packets to an xml file. Usage: packetlog 10 tenpackets.xml";
|
|
}
|
|
|
|
public override string Execute(string[] args, LLUUID fromAgentID)
|
|
{
|
|
if (args.Length != 2)
|
|
return "Usage: packetlog 10 tenpackets.xml";
|
|
|
|
return "This function is currently unimplemented";
|
|
}
|
|
}
|
|
}
|