summaryrefslogtreecommitdiff
path: root/apps/JAWS/stress_testing/connection.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-07 16:30:11 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-07 16:30:11 +0000
commita980eaccb9f0338f262549f31cc99a23529efd73 (patch)
tree726d1a64fda6757c5c37b41a489af40bcfa7505c /apps/JAWS/stress_testing/connection.h
parentdcd83bbd125e03d0659576ba51831a7350e3fd49 (diff)
downloadATCD-a980eaccb9f0338f262549f31cc99a23529efd73.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-1_0_15'.TAO-1_0_15
Diffstat (limited to 'apps/JAWS/stress_testing/connection.h')
-rw-r--r--apps/JAWS/stress_testing/connection.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/JAWS/stress_testing/connection.h b/apps/JAWS/stress_testing/connection.h
deleted file mode 100644
index 5eaa164bc78..00000000000
--- a/apps/JAWS/stress_testing/connection.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// $Id$
-
-#include "global.h"
-
-#ifndef _D_connection
-#define _D_connection
-class connection {
-
-public:
- int connect(char *hostname_opt_port, int tcp_nodelay, int sockbufsiz);
- read(void *buffer, size_t maxlen, unsigned int timeout_seconds = 60);
- write(const void *buffer, size_t maxlen, unsigned int timeout_seconds = 60);
- write_n(const void *buffer, size_t len, unsigned int timeout_seconds = 60);
- read_n(void *buffer, size_t maxlen, unsigned int timeout_seconds = 60);
- int close(void);
- ~connection(void);
-
-private:
- ACE_SOCK_Stream stream_;
- char sockbuf[66000];
-};
-#endif