Difference between revisions of "TransferInfo"

From Second Life Wiki
Jump to navigation Jump to search
 
Line 20: Line 20:
TransferStatus codes
TransferStatus codes


''LLTS_OK = 0
:LLTS_OK = 0
 
:LLTS_DONE = 1
''LLTS_DONE = 1
:LLTS_SKIP = 2
 
:LLTS_ABORT = 3
''LLTS_SKIP = 2
:LLTS_ERROR = -1
 
:LLTS_UNKNOWN_SOURCE = -2 // Equivalent of a 404
''LLTS_ABORT = 3
:LLTS_INSUFFICIENT_PERMISSIONS = -3
 
''LLTS_ERROR = -1
 
''LLTS_UNKNOWN_SOURCE = -2 // Equivalent of a 404
 
''LLTS_INSUFFICIENT_PERMISSIONS = -3


TargetTypes
TargetTypes


''LLTTT_UNKNOWN = 0
:LLTTT_UNKNOWN = 0
 
:LLTTT_FILE = 1
''LLTTT_FILE = 1
:LLTTT_VFILE = 2
 
:LLTTT_NUM_TYPES = 3
''LLTTT_VFILE = 2
 
''LLTTT_NUM_TYPES = 3


[[Category:Messages]]
[[Category:Messages]]

Latest revision as of 05:33, 3 April 2009

Message Layout

{
	TransferInfo Low NotTrusted Zerocoded
	{
		TransferInfo		Single
		{	TransferID		LLUUID	}
		{	ChannelType		S32	}
		{	TargetType		S32	}
		{	Status			S32	}
		{	Size			S32	}
	}
}

Usage and Notes

This message is only used by the Transfer Manager system.

TransferStatus codes

LLTS_OK = 0
LLTS_DONE = 1
LLTS_SKIP = 2
LLTS_ABORT = 3
LLTS_ERROR = -1
LLTS_UNKNOWN_SOURCE = -2 // Equivalent of a 404
LLTS_INSUFFICIENT_PERMISSIONS = -3

TargetTypes

LLTTT_UNKNOWN = 0
LLTTT_FILE = 1
LLTTT_VFILE = 2
LLTTT_NUM_TYPES = 3