ClientSession structure
Contains information about the session with the client. All members are readonly, except for member data.Syntax
typedef struct ClientSession{
int size;
int flags;
struct ProtocolData **data;
} ClientSession;Members
size The size of the structure, in bytes.
flags No flags here to define. This member is manly for C compatibility (padding), but it might be used in the furture and therefore should be set to zero.
data A pointer to a list of ProtocolData structures, the last item in the list has it's member size set to zero. Use FindProtocolDataStruct to find the data structure that belongs to this plugin.
Requirements
| Minimum supported API | 1.00
|
| Header | tvsserver_base.h
|