diff options
author | Fam Zheng <famz@redhat.com> | 2018-09-14 15:26:16 +0800 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-10-21 21:24:55 +0200 |
commit | 0fca92b9077af9817c04545cdfc519fe95c6fde9 (patch) | |
tree | 2b9a1093bebb6adc699d5031e623f25f243e9259 /slirp/bootp.h | |
parent | 6e157a0339793bb081705f52318fc77afd10addf (diff) | |
download | qemu-0fca92b9077af9817c04545cdfc519fe95c6fde9.zip |
slirp: Implement RFC2132 TFTP server name
This new usernet option can be used to add data for option 66 (tftp
server name) in the BOOTP reply, which is useful in PXE based automatic
OS install such as OpenBSD.
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Tested-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Diffstat (limited to 'slirp/bootp.h')
-rw-r--r-- | slirp/bootp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/slirp/bootp.h b/slirp/bootp.h index 394525733e..4043489835 100644 --- a/slirp/bootp.h +++ b/slirp/bootp.h @@ -70,6 +70,7 @@ #define RFC2132_MAX_SIZE 57 #define RFC2132_RENEWAL_TIME 58 #define RFC2132_REBIND_TIME 59 +#define RFC2132_TFTP_SERVER_NAME 66 #define DHCPDISCOVER 1 #define DHCPOFFER 2 |