ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/c++/SubNet.h
Revision: 1.2
Committed: Tue Mar 27 00:04:55 2001 UTC (23 years, 6 months ago) by ab11
Content type: text/plain
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.1: +6 -12 lines
Log Message:
tidied up

File Contents

# User Rev Content
1 ab11 1.1 #include <iostream>
2     #include <string>
3     #include "socket++-1.10/sockinet.h"
4    
5     using std::string;
6    
7     class SubNet {
8    
9     public:
10     // constructor
11     SubNet(string host, int port);
12 ab11 1.2 SubNet(); // no arg constructor
13     ~SubNet(); // destructor
14     string sendTCP(string text);
15     void sendUPDPacket( string host, int port, string message );
16     int isConnected();
17 ab11 1.1
18     private:
19     int connect;
20     iosockinet * socket; // TCP socket
21 ab11 1.2 osockinet * udp; // UDP socket
22 ab11 1.1 }; // class