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

#ifndef Stream_H_
#define Stream_H_

#include "cplus_bugs.h"
#include "Socket.h"

class IvlStream : public IvlSocket {
public:
		IvlStream (IvlAddress* = 0, IvlAddress* = 0);
		~IvlStream ();
		IvlStream (const IvlStream&);
	IvlChannel*	Copy () const;
	int		SockType ();
	int		Listen (int = 5);
};

#endif	/* Stream_H_ */