diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2021-03-26 12:19:56 +0100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2021-03-26 12:19:56 +0100 |
commit | 6b1a9f0d34069c218bdfa666a1f11dfcdf2b85cd (patch) | |
tree | 2a1a8f051b4fa0a9a3e1fa7a2d941604279a771c | |
parent | a673fdba131ff8750981b1f2fd644488567085ca (diff) | |
download | passt-6b1a9f0d34069c218bdfa666a1f11dfcdf2b85cd.tar passt-6b1a9f0d34069c218bdfa666a1f11dfcdf2b85cd.tar.gz passt-6b1a9f0d34069c218bdfa666a1f11dfcdf2b85cd.tar.bz2 passt-6b1a9f0d34069c218bdfa666a1f11dfcdf2b85cd.tar.lz passt-6b1a9f0d34069c218bdfa666a1f11dfcdf2b85cd.tar.xz passt-6b1a9f0d34069c218bdfa666a1f11dfcdf2b85cd.tar.zst passt-6b1a9f0d34069c218bdfa666a1f11dfcdf2b85cd.zip |
dhcp: Remove left-over comment about "forced" options
For simplicity, we just send all available options, so there's no
distinction between forced and requested option anymore.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r-- | dhcp.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -28,7 +28,6 @@ /** * struct opt - DHCP option - * @force: Force sending, even if the client didn't request it * @sent: Convenience flag, set while filling replies * @slen: Length of option defined for server * @s: Option payload from server @@ -118,7 +117,7 @@ static void fill_one(struct msg *m, int o, int *offset) } /** - * fill() - Fill requested and forced options in message + * fill() - Fill options in message * @m: Message to fill * * Return: current size of options field |