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

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