diff options
author | Marvin Borner | 2020-11-02 17:59:19 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-02 17:59:19 +0100 |
commit | 85ab89fd27347032bc1930e31615f71a5078b047 (patch) | |
tree | c4458ae6125fecc08f89c6710a28e4fc7cb9a4d7 /kernel/features | |
parent | 7bd11f0275cf22089177692092d73ab73ede87fa (diff) |
Improved error handling in rtl driver
Diffstat (limited to 'kernel/features')
-rw-r--r-- | kernel/features/net.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/features/net.c b/kernel/features/net.c index 447d781..90d7bab 100644 --- a/kernel/features/net.c +++ b/kernel/features/net.c @@ -49,8 +49,8 @@ u16 icmp_calculate_checksum(struct icmp_packet *packet) void *dhcp_get_options(struct dhcp_packet *packet, u8 type) { u8 *options = packet->options + 4; - u8 curr_type = *options; - while (curr_type != 0xff) { + u8 curr_type = 0; + while ((curr_type = *options) != 0xff) { u8 len = *(options + 1); if (curr_type == type) { void *ret = malloc(len); @@ -285,7 +285,7 @@ void dhcp_make_packet(struct dhcp_packet *packet, u8 msg_type) packet->hardware_type = HARDWARE_TYPE_ETHERNET; packet->mac_len = 6; packet->hops = 0; - packet->xid = htonl(0x41c6); + packet->xid = htonl(DHCP_TRANSACTION_IDENTIFIER); packet->flags = htons(0x0001); memcpy(packet->client_mac, rtl8139_get_mac(), 6); |