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:
28
28
- dotAmsterdam
29
29
- Donuts
30
30
- EurID (.eu)
31
+ - DNS Belgium (.be .vlaanderen .brussels)
32
+ - Donuts
33
+ - .CO.NL
31
34
- dotFRL
35
+ - IIS (.nu and .se)
32
36
- CarDNS (.hr)
33
37
- IIS (.se and .nu)
34
38
- Metaregistrar
35
39
- Nic.AT (.at)
36
40
- Key Systems RRPPROXY
41
+ - .PT
42
+ - Switch (.ch)
37
43
- Openprovider
38
44
- Ficora (.fi)
39
45
- DNS.PT (.pt)
40
46
- Norid (.no)
47
+ - Arnes (.si)
41
48
42
49
43
50
All 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