diff options
Diffstat (limited to 'methods/connect.h')
-rw-r--r-- | methods/connect.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/methods/connect.h b/methods/connect.h new file mode 100644 index 000000000..3af499236 --- /dev/null +++ b/methods/connect.h @@ -0,0 +1,19 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +// $Id: connect.h,v 1.1 1999/05/29 03:25:03 jgg Exp $ +/* ###################################################################### + + Connect - Replacement connect call + + ##################################################################### */ + /*}}}*/ +#ifndef CONNECT_H +#define CONNECT_H + +#include <string> +#include <apt-pkg/acquire-method.h> + +bool Connect(string To,int Port,const char *Service,int &Fd, + unsigned long TimeOut,pkgAcqMethod *Owner); + +#endif |