Webserver+3d print

Dependents:   Nucleo

Embed: (wiki syntax)

« Back to documentation index

_TftpServerContext Struct Reference

_TftpServerContext Struct Reference

TFTP server context. More...

#include <tftp_server.h>

Data Fields

TftpServerSettings settings
 User settings.
OsEvent event
 Event object used to poll the sockets.
Socket * socket
 Listening socket.
TftpClientConnection connection [TFTP_SERVER_MAX_CONNECTIONS]
 Client connections.
SocketEventDesc eventDesc [TFTP_SERVER_MAX_CONNECTIONS+1]
 The events the application is interested in.
uint8_t packet [TFTP_SERVER_MAX_PACKET_SIZE]
 Incoming TFTP packet.

Detailed Description

TFTP server context.

Definition at line 192 of file tftp_server.h.


Field Documentation

TftpClientConnection connection[TFTP_SERVER_MAX_CONNECTIONS]

Client connections.

Definition at line 197 of file tftp_server.h.

Event object used to poll the sockets.

Definition at line 195 of file tftp_server.h.

SocketEventDesc eventDesc[TFTP_SERVER_MAX_CONNECTIONS+1]

The events the application is interested in.

Definition at line 198 of file tftp_server.h.

uint8_t packet[TFTP_SERVER_MAX_PACKET_SIZE]

Incoming TFTP packet.

Definition at line 199 of file tftp_server.h.

User settings.

Definition at line 194 of file tftp_server.h.

Socket* socket

Listening socket.

Definition at line 196 of file tftp_server.h.