Instead of repeating "if F == AF_INET6" several times, we could introduce a new variable: > <del>and let F be the value of p.family()</del><ins>and let `v6` be the value of `p.family() == AF_INET6`</ins>. Then just use "if `v6`" in the table.