LLM_SESSIONS Structure
Contains information that relates to the currently installed Sentinel LDK Run-time Environment.
typedef struct llm_session
{
long pid;
char machine[20];
char ip[10];
} LLM_SESSION;
typedef struct llm_sessions
{
int count;
LLM_SESSION sessions[1]
} LLM_SESSIONS;
Members
pid | Process ID |
machine[20] | Machine name |
ip[10] | Machine IP |
count | Count of LLM sessions |
sessions[1] | Array of session descriptions |