summary refs log tree commit diff stats
path: root/slirp/tftp.h
diff options
context:
space:
mode:
Diffstat (limited to 'slirp/tftp.h')
-rw-r--r--slirp/tftp.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/slirp/tftp.h b/slirp/tftp.h
index 8f2675e077..1415c8527b 100644
--- a/slirp/tftp.h
+++ b/slirp/tftp.h
@@ -30,4 +30,14 @@ struct tftp_t {
   } x;
 };
 
+struct tftp_session {
+    Slirp *slirp;
+    char *filename;
+
+    struct in_addr client_ip;
+    u_int16_t client_port;
+
+    int timestamp;
+};
+
 void tftp_input(struct mbuf *m);