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
57
58
59
60
|
/*
* The Unix Channel
*
* by Michel Beaudouin-Lafon
*
* Copyright 1990-1993
* Laboratoire de Recherche en Informatique (LRI)
*
* Port server requests
*
* $Id$
* $CurLog$
*/
#include "PortServerReq.h"
UchPortServerReq :: UchPortServerReq ()
: UchMessage (),
Type (0),
Host (0),
Port (0),
Ident (0),
Key (0)
{
}
UchPortServerReq :: UchPortServerReq (sword t)
: Type (t),
Host (0),
Port (0),
Ident (0),
Key (0)
{
}
UchPortServerReq :: UchPortServerReq (sword t, lword h, sword p, lword i, const char* k)
: Type (t),
Host (h),
Port (p),
Ident (i),
Key (k)
{
}
UchPortServerReq :: ~UchPortServerReq ()
{
}
void
UchPortServerReq :: ReadFrom (UchMsgBuffer& b, lword)
{
b >> Type >> Host >> Port >> Ident;
Key = b.BufLength () ? (const char*) b.Buffer () : 0;
}
void
UchPortServerReq :: WriteTo (UchMsgBuffer& b)
{
b << Type << Host << Port << Ident << (char*) Key;
}
|