5359edc160de518d8e43fdd3448365c15b912c3c galt Mon Jul 22 11:48:10 2019 -0700 Added ipv6 support. Listening processes us hybrid dual stack feature of OS to simplify implementation and use a single listening socket. Works with both TCP and UDP. Parasol working. geoIp also updated and ready for IPv6. Should be invisible to most users, while providing connections via ipv6 where available. Supports both ipv4 and ipv6. diff --git src/hg/geoIp/save-old-for-compare src/hg/geoIp/save-old-for-compare index 576bf5c..a4c3910 100755 --- src/hg/geoIp/save-old-for-compare +++ src/hg/geoIp/save-old-for-compare @@ -1,12 +1,12 @@ #!/bin/tcsh # we want to backup our current geoIp tables for comparison after update -# just create the db first if it does not exit +# just create the db first if it does not exist #hgsql hgFixed -e "create database geoIpOld" foreach f ( *.as ) echo $f #hgsql geoIpOld -e "drop table $f:r" hgsql geoIpOld -e "CREATE TABLE $f:r SELECT * FROM hgFixed.$f:r" end