]> git.ipfire.org Git - oddments/ddns.git/commitdiff
No-IP.com: Rename provider and handle to NoIP.com
authorStefan Schantl <stefan.schantl@ipfire.org>
Tue, 5 Nov 2019 18:09:53 +0000 (19:09 +0100)
committerStefan Schantl <stefan.schantl@ipfire.org>
Tue, 5 Nov 2019 18:09:53 +0000 (19:09 +0100)
Fixes #11561.

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
README
ddns.conf.sample
src/ddns/providers.py

diff --git a/README b/README
index 76f63bcc18ab95013ee52cd4eb165db8185973b3..c75c448f58ee96b856f495ab34fd1d2b5f1ac289 100644 (file)
--- a/README
+++ b/README
@@ -75,7 +75,7 @@ SUPPORTED PROVIDERS:
        loopia.se
        myonlineportal.net
        namecheap.com
        loopia.se
        myonlineportal.net
        namecheap.com
-       no-ip.com
+       noip.com
        now-dns.com
        nsupdate.info
        opendns.com
        now-dns.com
        nsupdate.info
        opendns.com
index 5b3b845c8f7092edc69d8856a7f930225eb77a14..528684f55da1c1ab703f8d24b72e107fc865780c 100644 (file)
 # provider = namecheap.com
 # password = pass
 
 # provider = namecheap.com
 # password = pass
 
-# [test.no-ip.org]
-# provider = no-ip.com
+# [test.noip.org]
+# provider = noip.com
 # username = user
 # password = pass
 
 # username = user
 # password = pass
 
index f3c62c10397cb167eddbd85e3ceaf80d602eb398..47891074e035315d259790e2c99fdb3a5ad7f573 100644 (file)
@@ -1344,16 +1344,16 @@ class DDNSProviderNamecheap(DDNSResponseParserXML, DDNSProvider):
 
 
 class DDNSProviderNOIP(DDNSProtocolDynDNS2, DDNSProvider):
 
 
 class DDNSProviderNOIP(DDNSProtocolDynDNS2, DDNSProvider):
-       handle    = "no-ip.com"
-       name      = "No-IP"
-       website   = "http://www.no-ip.com/"
+       handle    = "noip.com"
+       name      = "NoIP"
+       website   = "http://www.noip.com/"
        protocols = ("ipv4",)
 
        # Information about the format of the HTTP request is to be found
        protocols = ("ipv4",)
 
        # Information about the format of the HTTP request is to be found
-       # here: http://www.no-ip.com/integrate/request and
-       # here: http://www.no-ip.com/integrate/response
+       # here: http://www.noip.com/integrate/request and
+       # here: http://www.noip.com/integrate/response
 
 
-       url = "http://dynupdate.no-ip.com/nic/update"
+       url = "http://dynupdate.noip.com/nic/update"
 
        def prepare_request_data(self, proto):
                assert proto == "ipv4"
 
        def prepare_request_data(self, proto):
                assert proto == "ipv4"