T32: Parsing cli options for T32 fail-client

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@2108 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hoffmann
2013-02-17 17:01:31 +00:00
parent 205c7ec919
commit 2c6a4c2d6e
7 changed files with 3033 additions and 75 deletions

View File

@ -0,0 +1,21 @@
#ifndef __T32CONNECTOR_HPP__
#define __T32CONNECTOR_HPP__
namespace fail {
class T32Connector {
char* m_hostname;
unsigned m_port;
unsigned m_packetlength;
public:
T32Connector() { };
T32Connector(char* hostname, unsigned port, unsigned packlen);
~T32Connector();
};
} // end-of-namespace fail
#endif // __T32CONNECTOR_HPP__