Zephyr API Documentation
3.0.0
A Scalable Open Source RTOS
3.0.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
Files
File List
Globals
All
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
tftp.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2020 InnBlue
3
*
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
12
#ifndef ZEPHYR_INCLUDE_NET_TFTP_H_
13
#define ZEPHYR_INCLUDE_NET_TFTP_H_
14
15
#include <zephyr.h>
16
#include <
net/socket.h
>
17
18
#ifdef __cplusplus
19
extern
"C"
{
20
#endif
21
22
struct
tftpc
{
23
uint8_t
*
user_buf
;
24
uint32_t
user_buf_size
;
25
};
26
27
/* TFTP Client Error codes. */
28
#define TFTPC_SUCCESS 0
29
#define TFTPC_DUPLICATE_DATA -1
30
#define TFTPC_BUFFER_OVERFLOW -2
31
#define TFTPC_UNKNOWN_FAILURE -3
32
#define TFTPC_REMOTE_ERROR -4
33
#define TFTPC_RETRIES_EXHAUSTED -5
34
35
/* @brief This function gets "file" from the remote server.
36
*
37
* If the file is successfully received its size will be returned in
38
* `client->user_buf_size` parameter.
39
*
40
* @param server Control Block that represents the remote server.
41
* @param client Client Buffer Information.
42
* @param remote_file Name of the remote file to get.
43
* @param mode TFTP Client "mode" setting
44
*
45
* @return TFTPC_SUCCESS if the operation completed successfully.
46
* TFTPC_BUFFER_OVERFLOW if the file is larger than the user buffer.
47
* TFTPC_REMOTE_ERROR if the server failed to process our request.
48
* TFTPC_RETRIES_EXHAUSTED if the client timed out waiting for server.
49
*/
50
int
tftp_get
(
struct
sockaddr
*server,
struct
tftpc
*
client
,
51
const
char
*remote_file,
const
char
*mode);
52
53
#ifdef __cplusplus
54
}
55
#endif
56
57
#endif
/* ZEPHYR_INCLUDE_NET_TFTP_H_ */
client
struct k_thread client
Definition:
main.c:31
socket.h
BSD Sockets compatible API definitions.
uint32_t
__UINT32_TYPE__ uint32_t
Definition:
stdint.h:60
uint8_t
__UINT8_TYPE__ uint8_t
Definition:
stdint.h:58
sockaddr
Definition:
net_ip.h:341
tftpc
Definition:
tftp.h:22
tftpc::user_buf_size
uint32_t user_buf_size
Definition:
tftp.h:24
tftpc::user_buf
uint8_t * user_buf
Definition:
tftp.h:23
tftp_get
int tftp_get(struct sockaddr *server, struct tftpc *client, const char *remote_file, const char *mode)
include
net
tftp.h
Generated on Mon Feb 21 2022 22:43:02 for Zephyr API Documentation by
1.9.2