source: rtems/cpukit/libnetworking/rtems/ftpfs.h @ d785ce4a

4.104.115
Last change on this file since d785ce4a was e386ad72, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/01/08 at 05:07:41

Add missing prototypes.

  • Property mode set to 100644
File size: 760 bytes
Line 
1/**
2 * @file rtems/ftpfs.h
3 *
4 * File Transfer Protocol client declarations
5 *
6 * Transfer file to/from remote host
7 */
8
9/*
10 * (c) Copyright 2002
11 * Thomas Doerfler
12 * IMD Ingenieurbuero fuer Microcomputertechnik
13 * Herbststr. 8
14 * 82178 Puchheim, Germany
15 * <Thomas.Doerfler@imd-systems.de>
16 *
17 * This code has been created after closly inspecting
18 * "tftpdriver.c" from Eric Norum.
19 *
20 *  $Id$
21 */
22
23#ifndef _RTEMS_FTPFS_H
24#define _RTEMS_FTPFS_H
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30#include <rtems/libio.h>
31
32  /* create mount point and mount ftp file system */
33extern int rtems_bsdnet_initialize_ftp_filesystem (void);
34
35  /* FTP File sysem operations table. */
36extern rtems_filesystem_operations_table rtems_ftp_ops;
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif
Note: See TracBrowser for help on using the repository browser.