#include <TFTP_design.hpp>
Public Methods | |
TFTPRequestPacket (short opcode, char *filename) | |
~TFTPRequestPacket () | |
short | getopcode () |
void | setfilename (char *filename) |
char * | getfilename () |
tftp_rrq_wrq_t * | get_rrq_wrq_packet () |
Private Attributes | |
tftp_rrq_wrq_t | rrq_wrq_packet |
|
Definition at line 81 of file TFTP_design.hpp. |
|
Definition at line 90 of file TFTP_design.hpp. 00091 { 00092 } |
|
Definition at line 108 of file TFTP_design.hpp. 00109 { 00110 return &rrq_wrq_packet; 00111 } |
|
Definition at line 104 of file TFTP_design.hpp. 00105 { 00106 return rrq_wrq_packet.filename; 00107 } |
|
Definition at line 94 of file TFTP_design.hpp. 00095 { 00096 return rrq_wrq_packet.opcode; 00097 } |
|
Definition at line 99 of file TFTP_design.hpp. 00100 { 00101 rrq_wrq_packet.filename = filename; 00102 } |
|
Definition at line 79 of file TFTP_design.hpp. |