summaryrefslogtreecommitdiff
path: root/comm/Socket.h
blob: db84209f89004400b230857359b0ef6dfcc25649 (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
/*
 *	The Unix Channel
 *
 *	by Michel Beaudouin-Lafon
 *
 *	Copyright 1990-1993
 *	Laboratoire de Recherche en Informatique (LRI)
 *
 *	Sockets
 *
 *	$Id$
 *	$CurLog$
 */

#ifndef Socket_H_
#define Socket_H_

#include "cplus_bugs.h"
#include "Channel.h"
#include "Address.h"

extern	char*	StrReprBuf;

#define SOCK_UNSPEC	0

//	Virtual base class for sockets.
//	A socket is a channel and an address.
//	As a channel, it is immutable, and must be initialized once and for all at creation.
//
class UchSocket : public UchChannel {
protected:
	pUchAddress	BAddr;
	pUchAddress	CAddr;
	int		AddrFamily;
public:
		UchSocket ();
		UchSocket (UchAddress*, UchAddress*);
		~UchSocket ();
		UchSocket (const UchSocket& s);
	
	UchChannel*	Copy () const;
virtual	int		SockType ();			// SOCK_UNSPEC, SOCK_STREAM, SOCK_DGRAM
inline	int		Family ()			{ return AddrFamily; }
inline	void		SetFamily (int f)		{ AddrFamily = f; }
	
	void		BindTo (UchAddress*);
	void		ConnectTo (UchAddress*);
inline	UchAddress*	BoundTo ()		{ return BAddr; }
inline	UchAddress*	ConnectedTo ()		{ return CAddr; }
	bool		Open ();
	int		Bind ();
	int		Bind (UchAddress*);
	int		Connect ();
	int		Connect (UchAddress*);
	bool		Setup ();
	char*		StrRepr (char* = StrReprBuf);
};

#endif /* Socket_H_ */