data.h
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /*
  2.  * ProFTPD - FTP server daemon
  3.  * Copyright (c) 1997, 1998 Public Flood Software
  4.  *  
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
  18.  */
  19. /* Data connection management prototypes
  20.  * $Id: data.h,v 1.3 1999/10/01 07:57:31 macgyver Exp $
  21.  */
  22. #ifndef __DATACONN_H
  23. #define __DATACONN_H
  24. void data_init(char*,int);
  25. void data_cleanup();
  26. int data_open(char*,char*,int,unsigned long);
  27. void data_close(int);
  28. void data_abort(int,int);
  29. int data_xfer(char*,int);
  30. void data_reset();
  31. #ifdef HAVE_SENDFILE
  32. int data_sendfile(int retr_fd, off_t *offset, size_t count);
  33. #endif /* HAVE_SENDFILE */
  34. #endif /* __DATACONN_H */