Virtual Vertex Muster SDK 9.0.0 - 9.0.14
Main Page
Modules
Data Structures
Files
File List
MClientLib
MSession.h
1
/*****************************************************************************
2
**
3
** Header file for Muster API Session object
4
**
5
** Name : MSession.h
6
** Author : Leonardo Bernardini
7
** Version : Alpha 9.0 Wed May 17th 2017
8
**
9
** Copyright 2000-2017, Virtual Vertex
10
** All Rights Reserved.
11
**
12
** This file contains UNPUBLISHED PROPRIETARY SOURCE CODE.
13
** The contents of this file may not be disclosed to third parties, copied
14
** or duplicated in any form, in whole or in part, without the prior written
15
** permission of the author.
16
**
17
*****************************************************************************/
18
#ifndef MSESSION_H
19
#define MSESSION_H
20
21
namespace
MClientLib
{
22
33
typedef
struct
MUSTER
{
34
std::string
serverAddress
;
35
std::string
username
;
36
int
serverPort
;
37
int
status
;
38
bool
async
;
39
void
*
context
;
40
}
MUSTER
;
41
47
typedef
struct
MUSTERCLIENT
{
48
std::string
clientAddress
;
49
int
clientPort
;
50
int
status
;
51
bool
async
;
52
void
*
context
;
53
}
MUSTERCLIENT
;
54
56
}
57
58
#endif
MClientLib::MUSTER::context
void * context
Definition:
MSession.h:39
MClientLib::MUSTERCLIENT::clientAddress
std::string clientAddress
Definition:
MSession.h:48
MClientLib::MUSTER::username
std::string username
Definition:
MSession.h:35
MClientLib::MUSTER
struct MClientLib::MUSTER MUSTER
Client lib MUSTER session structure.
MClientLib::MUSTER::status
int status
Definition:
MSession.h:37
MClientLib::MUSTERCLIENT::clientPort
int clientPort
Definition:
MSession.h:49
MClientLib::MUSTER::async
bool async
Definition:
MSession.h:38
MClientLib::MUSTERCLIENT
Client lib MUSTERCLIENT session structure.
Definition:
MSession.h:47
MClientLib::MUSTER::serverPort
int serverPort
Definition:
MSession.h:36
MClientLib::MUSTER
Client lib MUSTER session structure.
Definition:
MSession.h:33
MClientLib
Definition:
MAlarm.h:48
MClientLib::MUSTER::serverAddress
std::string serverAddress
Definition:
MSession.h:34
MClientLib::MUSTERCLIENT
struct MClientLib::MUSTERCLIENT MUSTERCLIENT
Client lib MUSTERCLIENT session structure.
MClientLib::MUSTERCLIENT::async
bool async
Definition:
MSession.h:51
MClientLib::MUSTERCLIENT::status
int status
Definition:
MSession.h:50
MClientLib::MUSTERCLIENT::context
void * context
Definition:
MSession.h:52