[PATCH 3/9] various: Comment fixes
Paul Donald
newtwen+github at gmail.com
Thu Apr 4 17:53:06 PDT 2024
From: Paul Donald <newtwen at gmail.com>
Signed-off-by: Paul Donald <newtwen at gmail.com>
---
src/dhcpv4.c | 2 +-
src/dhcpv6-ia.c | 6 +++---
src/netlink.c | 2 +-
src/router.c | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/dhcpv4.c b/src/dhcpv4.c
index 3191ff2..cb0484f 100644
--- a/src/dhcpv4.c
+++ b/src/dhcpv4.c
@@ -893,7 +893,7 @@ void dhcpv4_handle_msg(void *addr, void *data, size_t len,
struct arpreq arp = {.arp_flags = ATF_COM};
/*
- * send reply to the newly (in this proccess) allocated IP
+ * send reply to the newly (in this process) allocated IP
*/
dest.sin_addr = reply.yiaddr;
dest.sin_port = htons(DHCPV4_CLIENT_PORT);
diff --git a/src/dhcpv6-ia.c b/src/dhcpv6-ia.c
index 39a316a..dde224d 100644
--- a/src/dhcpv6-ia.c
+++ b/src/dhcpv6-ia.c
@@ -1142,11 +1142,11 @@ static size_t build_ia(uint8_t *buf, size_t buflen, uint16_t status,
}
if (!INFINITE_VALID(a->valid_until))
- /* UINT32_MAX is considered as infinite leasetime */
+ /* UINT32_MAX is RFC defined as infinite lease-time */
a->valid_until = (valid_lt == UINT32_MAX) ? 0 : valid_lt + now;
if (!INFINITE_VALID(a->preferred_until))
- /* UINT32_MAX is considered as infinite leasetime */
+ /* UINT32_MAX is RFC defined as infinite lease-time */
a->preferred_until = (preferred_lt == UINT32_MAX) ? 0 : preferred_lt + now;
o_ia.t1 = htonl((preferred_lt == UINT32_MAX) ? preferred_lt : preferred_lt * 5 / 10);
@@ -1570,7 +1570,7 @@ ssize_t dhcpv6_ia_handle_IAs(uint8_t *buf, size_t buflen, struct interface *ifac
/* Set error status */
status = (is_pd) ? DHCPV6_STATUS_NOPREFIXAVAIL : DHCPV6_STATUS_NOADDRSAVAIL;
else if (hdr->msg_type == DHCPV6_MSG_REQUEST && !dhcpv6_ia_on_link(ia, a, iface)) {
- /* Send NOTONLINK staus for the IA */
+ /* Send NOTONLINK status for the IA */
status = DHCPV6_STATUS_NOTONLINK;
assigned = false;
} else if (accept_reconf && assigned && !first &&
diff --git a/src/netlink.c b/src/netlink.c
index c33e3ea..368e69c 100644
--- a/src/netlink.c
+++ b/src/netlink.c
@@ -213,7 +213,7 @@ static void refresh_iface_addr6(int ifindex)
if (change) {
/*
- * Keep track on removed prefixes, so we could advertise them as invalid
+ * Keep track of removed prefixes, so we could advertise them as invalid
* for at least a couple of times.
*
* RFC7084 § 4.3 :
diff --git a/src/router.c b/src/router.c
index 6a9e19d..335218f 100644
--- a/src/router.c
+++ b/src/router.c
@@ -709,7 +709,7 @@ static int send_router_advert(struct interface *iface, const struct in6_addr *fr
iov[IOV_RA_SEARCH].iov_len = search_sz;
if (iface->pref64_length) {
- /* RFC 8781 § 4.1 rounding up lifetime to multiply of 8 */
+ /* RFC 8781 § 4.1 rounding up lifetime to multiple of 8 */
uint16_t pref64_lifetime = lifetime < (UINT16_MAX - 7) ? lifetime + 7 : UINT16_MAX;
uint8_t prefix_length_code;
uint32_t mask_a1, mask_a2;
--
2.44.0
More information about the openwrt-devel
mailing list