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
std::string clientAddress
Definition: MSession.h:48
std::string username
Definition: MSession.h:35
struct MClientLib::MUSTER MUSTER
Client lib MUSTER session structure.
Client lib MUSTERCLIENT session structure.
Definition: MSession.h:47
Client lib MUSTER session structure.
Definition: MSession.h:33
std::string serverAddress
Definition: MSession.h:34
struct MClientLib::MUSTERCLIENT MUSTERCLIENT
Client lib MUSTERCLIENT session structure.