diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-17 08:23:46 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-09-17 08:23:46 +0200 |
commit | 4716cfb5a1ebae09a8a277b8943d3a885dcf1365 (patch) | |
tree | 59394b5784b6ba8cfb83bb5b526f655401bc6253 /svdrp.h | |
parent | 7fbf9e6c49430ca2de4683dc7319aa32d247a0f6 (diff) | |
download | vdr-4716cfb5a1ebae09a8a277b8943d3a885dcf1365.tar.gz vdr-4716cfb5a1ebae09a8a277b8943d3a885dcf1365.tar.bz2 |
Implemented centralized 'wait for input'
Diffstat (limited to 'svdrp.h')
-rw-r--r-- | svdrp.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,12 +4,14 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: svdrp.h 1.2 2000/08/06 12:45:28 kls Exp $ + * $Id: svdrp.h 1.3 2000/09/16 11:48:36 kls Exp $ */ #ifndef __SVDRP_H #define __SVDRP_H +#include "tools.h" + class cSocket { private: int port; @@ -26,7 +28,7 @@ public: class cSVDRP { private: cSocket socket; - int filedes; + cFile file; void Close(void); bool Send(const char *s, int length = -1); void Reply(int Code, const char *fmt, ...); |