summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/rtems/ftpfs.h
blob: bcd18a4266896a6668d337e21c1b7c58103c6520 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * File Transfer Protocol client declarations
 *
 * Transfer file to/from remote host
 * 
 *
 * (c) Copyright 2002
 * Thomas Doerfler
 * IMD Ingenieurbuero fuer Microcomputertechnik
 * Herbststr. 8
 * 82178 Puchheim, Germany 
 * <Thomas.Doerfler@imd-systems.de>
 *
 * This code has been created after closly inspecting 
 * "tftpdriver.c" from Eric Norum.
 * 
 *  $Id$
 */

#ifndef _FTP_DRIVER_H
#define _FTP_DRIVER_H

#ifdef __cplusplus
extern "C" {
#endif

  /* create mount point and mount ftp file system */
  int rtems_bsdnet_initialize_ftp_filesystem () ;

#ifdef __cplusplus
}
#endif

#endif