TuyaOS
include
components
tal_lwip
include
lwip
apps
tftp_server.h
浏览该文件的文档.
1
14
/*
15
* Redistribution and use in source and binary forms, with or without
16
* modification,are permitted provided that the following conditions are met:
17
*
18
* 1. Redistributions of source code must retain the above copyright notice,
19
* this list of conditions and the following disclaimer.
20
* 2. Redistributions in binary form must reproduce the above copyright notice,
21
* this list of conditions and the following disclaimer in the documentation
22
* and/or other materials provided with the distribution.
23
* 3. The name of the author may not be used to endorse or promote products
24
* derived from this software without specific prior written permission.
25
*
26
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
27
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
29
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
31
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
*
37
* Author: Logan Gunthorpe <logang@deltatee.com>
38
*
39
*/
40
41
#ifndef LWIP_HDR_APPS_TFTP_SERVER_H
42
#define LWIP_HDR_APPS_TFTP_SERVER_H
43
44
#include "
lwip/apps/tftp_opts.h
"
45
#include "
lwip/err.h
"
46
#include "
lwip/pbuf.h
"
47
48
#ifdef __cplusplus
49
extern
"C"
{
50
#endif
51
55
struct
tftp_context
{
63
void
* (*open)(
const
char
* fname,
const
char
* mode, u8_t
write
);
68
void (*
close
)(
void
* handle);
76
int (*
read
)(
void
* handle,
void
* buf,
int
bytes);
85
int (*
write
)(
void
* handle,
struct
pbuf
* p);
86
};
87
88
err_t
tftp_init(
const
struct
tftp_context
* ctx);
89
void
tftp_cleanup(
void
);
90
91
#ifdef __cplusplus
92
}
93
#endif
94
95
#endif
/* LWIP_HDR_APPS_TFTP_SERVER_H */
err.h
err_t
s8_t err_t
Definition:
err.h:96
pbuf.h
pbuf
Definition:
pbuf.h:186
tftp_context
Definition:
tftp_server.h:55
tftp_context::read
int(* read)(void *handle, void *buf, int bytes)
Definition:
tftp_server.h:76
tftp_context::write
int(* write)(void *handle, struct pbuf *p)
Definition:
tftp_server.h:85
tftp_context::close
void(* close)(void *handle)
Definition:
tftp_server.h:68
tftp_opts.h
Trivial File Transfer Protocol (RFC 1350) implementation options
制作者
1.9.4