ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Root Listing
root
/
cvsroot
/
COMP
/
DBS
/
Servers
/
AppServer
/
include
/
ServerSocket.hpp
Revision:
1.1
Committed:
Mon Oct 31 22:10:36 2005 UTC
(19 years, 6 months ago) by
afaq
Branch point for:
v00, MAIN
Log Message:
Initial revision
File Contents
#
User
Rev
Content
1
afaq
1.1
#ifndef _ServerSocket_hpp_included_
2
#define _ServerSocket_hpp_included_
3
4
#include <sys/socket.h>
5
#include "Socket.hpp"
6
7
class ServerSocket {
8
private:
9
int listenfd;
10
public:
11
ServerSocket(int port, int backlog);
12
Socket* accept();
13
};
14
#endif