diff options
| author | Michael Brown | 2005-06-01 20:02:24 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-06-01 20:02:24 +0200 |
| commit | 55771a462d0c9b76e6043eeb64baae77ce19db50 (patch) | |
| tree | d55d95ef539ca4121133c2ab56f02e9037956cf2 /src/include | |
| parent | Don't choke on duplicate OACK packets. (diff) | |
| download | ipxe-55771a462d0c9b76e6043eeb64baae77ce19db50.tar.gz ipxe-55771a462d0c9b76e6043eeb64baae77ce19db50.tar.xz ipxe-55771a462d0c9b76e6043eeb64baae77ce19db50.zip | |
Re-order functions for more logical documentation
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/tftpcore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/tftpcore.h b/src/include/tftpcore.h index c0fbd2796..d8761f338 100644 --- a/src/include/tftpcore.h +++ b/src/include/tftpcore.h @@ -12,9 +12,6 @@ #include "tftp.h" -extern int tftp_get ( struct tftp_state *state, long timeout, - union tftp_any **reply ); - extern int tftp_open ( struct tftp_state *state, const char *filename, union tftp_any **reply ); @@ -23,6 +20,9 @@ extern int tftp_process_opts ( struct tftp_state *state, extern int tftp_ack_nowait ( struct tftp_state *state ); +extern int tftp_get ( struct tftp_state *state, long timeout, + union tftp_any **reply ); + extern int tftp_ack ( struct tftp_state *state, union tftp_any **reply ); extern int tftp_error ( struct tftp_state *state, int errcode, |
