summaryrefslogtreecommitdiff
path: root/core/fs/pxe/tftp.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fs/pxe/tftp.h')
-rw-r--r--core/fs/pxe/tftp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/fs/pxe/tftp.h b/core/fs/pxe/tftp.h
index 8802914e..82ef64a5 100644
--- a/core/fs/pxe/tftp.h
+++ b/core/fs/pxe/tftp.h
@@ -53,6 +53,7 @@
#define TFTP_ERESOLVE htons(9) // Not in RFC, internal usage
#define TFTP_ECONNECT htons(10) // Not in RFC, internal usage
#define TFTP_OK htons(11) // Not in RFC, internal usage
+#define TFTP_NONETWORK htons(12) // Not in RFC, internal usage
struct tftp_error {
uint16_t opcode;
@@ -61,5 +62,6 @@ struct tftp_error {
} __attribute__ (( packed ));
int tftp_put(struct url_info *url, int flags, struct inode *inode,
- const char **redir, char *data, int data_length);
+ const char **redir, char *data, int data_length);
+
#endif /* PXE_TFTP_H */