File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
Registries/siEppConnection Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -28,16 +28,23 @@ Currently supported registries:
2828- dotAmsterdam
2929- Donuts
3030- EurID (.eu)
31+ - DNS Belgium (.be .vlaanderen .brussels)
32+ - Donuts
33+ - .CO.NL
3134- dotFRL
35+ - IIS (.nu and .se)
3236- CarDNS (.hr)
3337- IIS (.se and .nu)
3438- Metaregistrar
3539- Nic.AT (.at)
3640- Key Systems RRPPROXY
41+ - .PT
42+ - Switch (.ch)
3743- Openprovider
3844- Ficora (.fi)
3945- DNS.PT (.pt)
4046- Norid (.no)
47+ - Arnes (.si)
4148
4249
4350All code changes are tested automatically with the phpunit tests in the Tests directory
Original file line number Diff line number Diff line change 1+ <?php
2+ namespace Metaregistrar \EPP ;
3+ class siEppConnection extends eppConnection
4+ {
5+ public function __construct ($ logging = false , $ settingsfile = null )
6+ {
7+ parent ::__construct ($ logging , $ settingsfile );
8+ parent ::setServices (array (
9+ 'urn:ietf:params:xml:ns:domain-1.0 ' => 'domain ' ,
10+ 'urn:ietf:params:xml:ns:host-1.0 ' => 'host ' ,
11+ 'urn:ietf:params:xml:ns:contact-1.0 ' => 'contact '
12+ ));
13+ parent ::setLanguage ('en-US ' );
14+ parent ::setVersion ('1.0 ' );
15+ parent ::enableDnssec ();
16+
17+ parent ::useExtension ('dnssi-1.2 ' );
18+ // These extensions are not supported yet but will be sent to the registry
19+ parent ::addExtension ("registrar " , "http://www.arnes.si/xml/epp/registrar-1.0 " );
20+ parent ::addExtension ("DNScheck " , "http://www.arnes.si/xml/epp/DNScheck-1.0 " );
21+
22+ }
23+ }
You can’t perform that action at this time.
0 commit comments