-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSCTPClientGSocket.h
57 lines (49 loc) · 1.84 KB
/
SCTPClientGSocket.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: SCTPClientGSocket.h
* Author: gedas
*
* Created on Penktadienis, 2016, balandis 15, 20.54
*/
#ifndef SCTPCLIENTGSOCKET_H
#define SCTPCLIENTGSOCKET_H
#include "SCTPGSocket.h"
namespace GServer {
class SCTPClientGSocket : public SCTPGSocket {
public:
// ##### Kintamieji #####
// ##### END Kintamieji #####
// #####################################################################
// ##### Metodai #####
/** SCTPClientGSocket **
* Metodas skirtas sukurti SCTPClientGSocket tipo objektui.
* descriptor- gauto nauji prisjungimo descriptrius
* conf- objektas dirbantis su nustatymu failu
* logger- objektas, kuris organizuoja pranesimu rasyma
* visiSocket- sarasas visu skaitomu socketu
* maxDescritpor- maksimalaus deskritoriaus reiksme
command- nuoroda i komandu aprodjimo objekta*/
SCTPClientGSocket(int descritor, GServer::GConfig* conf,
GServer::GLogger* logger, fd_set* visiSocket,
int &maxDescriptor, GCommandExecution* command);
virtual ~SCTPClientGSocket();
// ##### END Metodai #####
protected:
// ##### Kintamieji #####
// ##### END Kintamieji #####
// #####################################################################
// ##### Metodai #####
// ##### END Metodai #####
private:
// ##### Kintamieji #####
// ##### END Kintamieji #####
// #####################################################################
// ##### Metodai #####
// ##### END Metodai #####
};
}
#endif /* SCTPCLIENTGSOCKET_H */