[pkg-dhcp-commits] [isc-dhcp] branch master updated (ba1da0c -> e613300)

Michael Gilbert mgilbert at moszumanska.debian.org
Sat Apr 16 19:12:02 UTC 2016


This is an automated email from the git hooks/post-receive script.

mgilbert pushed a change to branch master
in repository isc-dhcp.

      from  ba1da0c   release 4.3.3-9
      adds  ace6381   import upstream 4.3.4~b1
      adds  eeba293   Merge branch 'upstream'
      adds  2b0f10e   refresh patches for 4.3.4~b1
      adds  2063f29   release 4.3.4~b1
       new  1f3bdab   import upstream 4.3.4
       new  6df27f0   Merge branch 'upstream'
       new  e613300   release 4.3.4-1

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 LICENSE                                          |    2 +-
 Makefile.am                                      |   14 +-
 README                                           |   18 +-
 RELNOTES                                         |  224 +++-
 client/Makefile.am                               |   17 +-
 client/clparse.c                                 |  109 +-
 client/dhc6.c                                    |  913 +++++++++++---
 client/dhclient.8                                |   30 +-
 client/dhclient.c                                |  938 ++++++++++++++-
 client/dhclient.conf.5                           |   75 +-
 client/tests/Makefile.am                         |   23 +-
 common/Makefile.am                               |   12 +-
 common/alloc.c                                   |   67 +-
 common/bpf.c                                     |    7 +-
 common/comapi.c                                  |   15 +-
 common/conflex.c                                 |   19 +-
 common/ctrace.c                                  |    7 +
 common/dhcp-options.5                            |    4 +-
 common/dhcp4o6.c                                 |  116 ++
 common/discover.c                                |   50 +-
 common/dlpi.c                                    |   15 +-
 common/execute.c                                 |   26 +-
 common/inet.c                                    |   30 +-
 common/lpf.c                                     |    6 +-
 common/options.c                                 |   30 +-
 common/packet.c                                  |   49 +-
 common/print.c                                   |  101 +-
 common/tables.c                                  |   59 +-
 common/tests/Makefile.am                         |   26 +-
 common/tests/test_alloc.c                        |   56 +-
 common/tree.c                                    |   19 +-
 configure.ac                                     |  187 ++-
 contrib/dhcp-lease-list.pl                       |    7 +-
 debian/changelog                                 |   17 +
 debian/clean                                     |    1 +
 debian/control                                   |    2 +-
 debian/dhcp-lease-list.1                         |   11 +
 debian/isc-dhcp-server.init.d                    |    1 +
 debian/isc-dhcp-server.manpages                  |    2 +
 debian/isc-dhcp-server.postinst                  |    2 -
 debian/patches/CVE-2015-8605.patch               |   91 --
 debian/patches/dhclient-dividebyzero.patch       |    4 +-
 debian/patches/dhclient-exit-hook.patch          |    2 +-
 debian/patches/dhclient-more-detail.patch        |   24 +-
 debian/patches/dhclient-script-exit-status.patch |    2 +-
 debian/patches/dhcpd-leaselist.patch             |    2 +-
 debian/patches/dhcrelay-listen.patch             |    8 +-
 debian/patches/fix-manpage-error.patch           |   11 +
 debian/patches/series                            |    3 +-
 debian/patches/system-bind.patch                 |   78 +-
 dhcpctl/Makefile.am                              |   10 +-
 dhcpctl/omshell.c                                |   17 +-
 doc/DHCPv4-over-DHCPv6                           |  221 ++++
 includes/config.h.in                             |    8 +-
 includes/dhcp6.h                                 |   76 +-
 includes/dhcpd.h                                 |   67 +-
 includes/dhctoken.h                              |   11 +-
 includes/omapip/omapip_p.h                       |    3 +-
 includes/osdep.h                                 |    4 +-
 includes/site.h                                  |   33 +-
 omapip/Makefile.am                               |    6 +-
 omapip/hash.c                                    |    5 +-
 omapip/listener.c                                |   10 +-
 relay/Makefile.am                                |    6 +-
 relay/dhcrelay.8                                 |   39 +-
 relay/dhcrelay.c                                 |  182 ++-
 server/Makefile.am                               |    8 +-
 server/bootp.c                                   |   31 +-
 server/confpars.c                                |  337 ++++--
 server/db.c                                      |   49 +-
 server/dhcp.c                                    |  394 +++++-
 server/dhcpd.8                                   |   17 +-
 server/dhcpd.c                                   |  185 ++-
 server/dhcpd.conf.5                              |   77 +-
 server/dhcpd.leases.5                            |   26 +-
 server/dhcpleasequery.c                          |    8 +-
 server/dhcpv6.c                                  | 1407 +++++++++++++++++-----
 server/failover.c                                |   17 +-
 server/ldap.c                                    |    4 +
 server/leasechain.c                              |    5 +-
 server/mdb.c                                     |   34 +-
 server/mdb6.c                                    |  219 +++-
 server/omapi.c                                   |  138 ++-
 server/salloc.c                                  |   16 +-
 server/stables.c                                 |    5 +-
 server/tests/Makefile.am                         |   20 +-
 server/tests/load_bal_unittest.c                 |   11 +-
 server/tests/simple_unittest.c                   |   52 +-
 util/bindvar.sh                                  |   13 +-
 89 files changed, 6022 insertions(+), 1281 deletions(-)
 create mode 100644 common/dhcp4o6.c
 create mode 100644 debian/dhcp-lease-list.1
 delete mode 100644 debian/patches/CVE-2015-8605.patch
 create mode 100644 debian/patches/fix-manpage-error.patch
 create mode 100644 doc/DHCPv4-over-DHCPv6

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-dhcp/isc-dhcp.git



More information about the pkg-dhcp-commits mailing list