Skip to content

Commit 0be9b07

Browse files
committed
Readme updated
1 parent fc8fc23 commit 0be9b07

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

README

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

4350
All code changes are tested automatically with the phpunit tests in the Tests directory
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
}

0 commit comments

Comments
 (0)