mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- iana ports fetched via https.
- iana portlist updated. git-svn-id: file:///svn/unbound/trunk@3649 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
4f1625afb7
commit
5ce528e0d7
3 changed files with 4 additions and 1 deletions
|
|
@ -552,7 +552,7 @@ uninstall: $(PYTHONMOD_UNINSTALL) $(PYUNBOUND_UNINSTALL) $(UNBOUND_EVENT_UNINSTA
|
||||||
@echo "You still need to remove "`dirname $(DESTDIR)$(configfile)`" , $(DESTDIR)$(configfile) by hand"
|
@echo "You still need to remove "`dirname $(DESTDIR)$(configfile)`" , $(DESTDIR)$(configfile) by hand"
|
||||||
|
|
||||||
iana_update:
|
iana_update:
|
||||||
curl -o port-numbers.tmp http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml --compressed
|
curl -o port-numbers.tmp https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml --compressed
|
||||||
if file port-numbers.tmp | grep 'gzip' >/dev/null; then zcat port-numbers.tmp; else cat port-numbers.tmp; fi | awk '/<record>/ {p=0;} /<protocol>udp/ {p=1;} /<protocol>[^u]/ {p=0;} /Decomissioned|Decommissioned|Removed|De-registered|unassigned|Unassigned|Reserved/ {u=1;} /<number>/ { if(u==1) {u=0;} else { if(p==1) { match($$0,/[0-9]+/); print substr($$0, RSTART, RLENGTH) ","}}}' | sort -nu > util/iana_ports.inc
|
if file port-numbers.tmp | grep 'gzip' >/dev/null; then zcat port-numbers.tmp; else cat port-numbers.tmp; fi | awk '/<record>/ {p=0;} /<protocol>udp/ {p=1;} /<protocol>[^u]/ {p=0;} /Decomissioned|Decommissioned|Removed|De-registered|unassigned|Unassigned|Reserved/ {u=1;} /<number>/ { if(u==1) {u=0;} else { if(p==1) { match($$0,/[0-9]+/); print substr($$0, RSTART, RLENGTH) ","}}}' | sort -nu > util/iana_ports.inc
|
||||||
rm -f port-numbers.tmp
|
rm -f port-numbers.tmp
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
07 March 2016: Wouter
|
07 March 2016: Wouter
|
||||||
- Fix #747: assert in outnet_serviced_query_stop.
|
- Fix #747: assert in outnet_serviced_query_stop.
|
||||||
|
- iana ports fetched via https.
|
||||||
|
- iana portlist update.
|
||||||
|
|
||||||
03 March 2016: Wouter
|
03 March 2016: Wouter
|
||||||
- configure tests for the weak attribute support by the compiler.
|
- configure tests for the weak attribute support by the compiler.
|
||||||
|
|
|
||||||
|
|
@ -3904,6 +3904,7 @@
|
||||||
4599,
|
4599,
|
||||||
4600,
|
4600,
|
||||||
4601,
|
4601,
|
||||||
|
4621,
|
||||||
4658,
|
4658,
|
||||||
4659,
|
4659,
|
||||||
4660,
|
4660,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue