]> git.saurik.com Git - apt.git/blame_incremental - methods/connect.h
fix program name detection in rsh method
[apt.git] / methods / connect.h
... / ...
CommitLineData
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3// $Id: connect.h,v 1.3 2001/02/20 07:03:18 jgg Exp $
4/* ######################################################################
5
6 Connect - Replacement connect call
7
8 ##################################################################### */
9 /*}}}*/
10#ifndef CONNECT_H
11#define CONNECT_H
12
13#include <string>
14
15class pkgAcqMethod;
16
17bool Connect(std::string To,int Port,const char *Service,int DefPort,
18 int &Fd,unsigned long TimeOut,pkgAcqMethod *Owner);
19void RotateDNS();
20
21#endif