summaryrefslogtreecommitdiff
path: root/comm/OLD/PortServerReq.cc
blob: 339bb32a950a4e3f4136210be66fc18804eb9385 (plain)
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
61
/*
 *	The Unix Channel
 *
 *	by Michel Beaudouin-Lafon
 *
 *	Copyright 1990-1993
 *	Laboratoire de Recherche en Informatique (LRI)
 *
 *	Port server requests
 *
 *	$Id$
 *	$CurLog$
 */

#include "PortServerReq.h"
#include "Channel.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 (UchIOS& b, lword)
{
	b >> Type >> Host >> Port >> Ident >> Key;
//	Key = b.BufLength () ? (const char*) b.Buffer () : 0;
}

void
UchPortServerReq :: WriteTo (UchIOS& b)
{
	b << Type << Host << Port << Ident << Key;
}