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

4.104.114.84.95
Last change on this file since c58c2ca was c58c2ca, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/02/05 at 10:11:10

New header guards.

  • Property mode set to 100644
File size: 628 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  /* create mount point and mount ftp file system */
31  int rtems_bsdnet_initialize_ftp_filesystem () ;
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif
Note: See TracBrowser for help on using the repository browser.