mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:57:34 +00:00
DHCPClient: Fix incorrect BOOTP Broadcast flag value
This is supposed to be the MSB, not the LSB.
This commit is contained in:
parent
4043e770e5
commit
c0703f48fe
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
enum class DHCPv4Flags : u16 {
|
enum class DHCPv4Flags : u16 {
|
||||||
Broadcast = 1,
|
Broadcast = 1 << 15,
|
||||||
/* everything else is reserved and must be zero */
|
/* everything else is reserved and must be zero */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue