You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gn...@apache.org on 2020/03/30 15:47:34 UTC

[incubator-nuttx] branch master updated (910ebbf -> 15fac77)

This is an automated email from the ASF dual-hosted git repository.

gnutt pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from 910ebbf  fs/fat/fs_fat32util.c: return was missing from the last PR.
     add 07c3b16  libc/netdb: Replace get_errno with errno
     add 64a230d  libc/netdb: Should use ntohs not htons for the receiving data
     add 35b98f2  libc/netdb: Change the fopen mode from "rt" to "r"
     add 673a43d  libc/netdb: Need skip ':' to get port in dns_foreach_nameserver
     add d05de76  libc/netdb: Don't need call dns_initialize in dns_find_answer
     add 9e277c6  libc/netdb: Return null alias for getservbyport_r/getservbyname_r
     add bd9fbad  libc/netdb: Fix the buffer overwrite in lib_parse_hostfile
     add eaab17b  libc/netdb: Change the default max number of host IP to 2 if both IPv4 and Ipv6 enable
     add c85fe67  net/loopback: Move g_lo_* global variable to libc/net/
     add a709c83  libc/netdb: Make gethostbyaddr_r callable even without CONFIG_NETDB_HOSTFILE
     add dd0aca6  libc/netdb: Make host and serv optional for getnameinfo
     add d8b5362  libc/netdb: Fix typo error in the implementation of gethostbyname_r
     add 15fac77  libc/netdb: Fix nxstyle issue

No new revisions were added by this update.

Summary of changes:
 include/netdb.h                                    |  15 +--
 libs/libc/net/Make.defs                            |   4 +
 .../lo_globals.c => libs/libc/net/lib_loopback.c   |   4 +-
 libs/libc/netdb/Kconfig                            |  23 ++---
 libs/libc/netdb/Make.defs                          |   3 +-
 libs/libc/netdb/lib_dns.h                          |  16 ++--
 libs/libc/netdb/lib_dnsaddserver.c                 |  31 +++---
 libs/libc/netdb/lib_dnsbind.c                      |  18 ++--
 libs/libc/netdb/lib_dnscache.c                     |  24 ++---
 libs/libc/netdb/lib_dnsforeach.c                   |  15 +--
 libs/libc/netdb/lib_dnsinit.c                      |  67 ++++++-------
 libs/libc/netdb/lib_dnsnotify.c                    |  11 ++-
 libs/libc/netdb/lib_dnsquery.c                     | 106 ++++++++-------------
 libs/libc/netdb/lib_gaistrerror.c                  |   4 +-
 libs/libc/netdb/lib_getaddrinfo.c                  |  98 +++++++++----------
 libs/libc/netdb/lib_gethostbyaddr.c                |   7 +-
 libs/libc/netdb/lib_gethostbyaddrr.c               |  83 +++++++++-------
 libs/libc/netdb/lib_gethostbynamer.c               | 102 +++++++-------------
 libs/libc/netdb/lib_getnameinfo.c                  |  35 +++----
 libs/libc/netdb/lib_getservbyname.c                |   6 +-
 libs/libc/netdb/lib_getservbynamer.c               |  26 +----
 libs/libc/netdb/lib_getservbyport.c                |   3 +-
 libs/libc/netdb/lib_getservbyportr.c               |  16 +---
 libs/libc/netdb/lib_netdb.c                        |   1 -
 libs/libc/netdb/lib_netdb.h                        |   4 +
 libs/libc/netdb/lib_parsehostfile.c                |  72 +++++++-------
 net/Kconfig                                        |   1 -
 net/Makefile                                       |   1 -
 net/README.txt                                     |   1 -
 net/loopback/Kconfig                               |   4 -
 net/loopback/Make.defs                             |  47 ---------
 net/loopback/loopback.h                            |  77 ---------------
 32 files changed, 353 insertions(+), 572 deletions(-)
 rename net/loopback/lo_globals.c => libs/libc/net/lib_loopback.c (98%)
 delete mode 100644 net/loopback/Kconfig
 delete mode 100644 net/loopback/Make.defs
 delete mode 100644 net/loopback/loopback.h