FreeBSD change for openssh
    Ed Maste 
    emaste at freebsd.org
       
    Thu Nov 18 02:10:55 AEDT 2021
    
    
  
On Mon, 15 Nov 2021 at 11:51, Mike Karels <karels at freebsd.org> wrote:
>
> +#ifndef IN_LOOPBACK
> +#define IN_LOOPBACK(i)         (((i) & 0xff000000) == 0x7f000000)
> +#endif
...
>  static int
>  sockaddr_is_local(struct sockaddr *hostaddr)
>  {
>         switch (hostaddr->sa_family) {
>         case AF_INET:
> -               return (ntohl(((struct sockaddr_in *)hostaddr)->
> -                   sin_addr.s_addr) >> 24) == IN_LOOPBACKNET;
> +               return (IN_LOOPBACK(ntohl(((struct sockaddr_in *)hostaddr)->
> +                   sin_addr.s_addr)));
Looks fine to me.
IMO #ifndef is reasonable as it's unlikely that IN_LOOPBACK() would be
implemented as other than a macro anywhere, but could be a full
autoconf check if that's what OpenSSH folks want.
    
    
More information about the openssh-unix-dev
mailing list