cvs commit: src/include netdb.h src/lib/libc/net getaddrinfo.c getnetbydns.c getnetbyht.c getnetbynis.c getnetnamadr.c netdb_private.h

Hajimu UMEMOTO ume at FreeBSD.org
Sun May 29 03:21:39 PDT 2005


ume         2005-05-29 10:21:38 UTC

  FreeBSD src repository

  Modified files:        (Branch: RELENG_5)
    include              netdb.h 
    lib/libc/net         getaddrinfo.c getnetbydns.c getnetbyht.c 
                         getnetbynis.c getnetnamadr.c 
                         netdb_private.h 
  Log:
  MFC: The ai_addrlen of a struct addrinfo used to be a size_t, per RFC
  2553.  In XNS5.2, and subsequently in POSIX-2001 and RFC 3493, it was
  changed to a socklen_t.  And, the n_net of a struct netent used to be
  an unsigned long integer.  In XNS5, and subsequently in POSIX-2001, it
  was changed to an uint32_t.  To accomodate for this while preserving
  ABI compatibility with the old interface, we need to prepend or append
  32 bits of padding, depending on the (LP64) architecture's endianness.
  
          include/netdb.h:                1.36 (partly)
          lib/libc/net/getaddrinfo.c:     1.69
          lib/libc/net/getnetbydns.c:     1.30
          lib/libc/net/getnetbyht.c:      1.15
          lib/libc/net/getnetbynis.c:     1.18
          lib/libc/net/getnetnamadr.c:    1.20 (partly)
          lib/libc/net/netdb_private.h:   1.9
  
  Revision   Changes    Path
  1.32.2.3   +41 -4     src/include/netdb.h
  1.52.2.12  +4 -1      src/lib/libc/net/getaddrinfo.c
  1.28.2.2   +12 -8     src/lib/libc/net/getnetbydns.c
  1.10.8.4   +5 -2      src/lib/libc/net/getnetbyht.c
  1.15.8.2   +7 -4      src/lib/libc/net/getnetbynis.c
  1.17.6.3   +3 -2      src/lib/libc/net/getnetnamadr.c
  1.9.2.7    +1 -7      src/lib/libc/net/netdb_private.h


More information about the cvs-all mailing list