Skip to content

Commit

Permalink
Added Traficom (.fi) backend
Browse files Browse the repository at this point in the history
  • Loading branch information
getpinga committed Sep 23, 2024
1 parent b556666 commit c719d04
Show file tree
Hide file tree
Showing 3 changed files with 2,352 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ openssl s_client -connect epp.example.com:700 -CAfile cacert.pem -cert cert.pem
| TMCH ||
| REGRR ||

## Registry Support (36 backends and counting)
## Registry Support (37 backends and counting)

| Registry | TLDs | Extension | Status | TODO |
|----------|----------|----------|----------|----------|
Expand Down Expand Up @@ -117,6 +117,7 @@ openssl s_client -connect epp.example.com:700 -CAfile cacert.pem -cert cert.pem
| RyCE | all | || |
| SIDN | all | || more tests |
| SWITCH | .ch, .li | || |
| Traficom | .fi | FI || only org contacts; more tests |
| Verisign | all | VRSN || |
| ZADNA | .za | || |
| ZDNS | all | || |
Expand Down
4 changes: 4 additions & 0 deletions src/EppRegistryFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
namespace Pinga\Tembo;

use Pinga\Tembo\Registries\EuEpp;
use Pinga\Tembo\Registries\FiEpp;
use Pinga\Tembo\Registries\FrEpp;
use Pinga\Tembo\Registries\FredEpp;
use Pinga\Tembo\Registries\GrEpp;
Expand All @@ -33,6 +34,9 @@ public static function create($registry)
case 'EU':
return new EuEpp();
break;
case 'FI':
return new FiEpp();
break;
case 'FR':
return new FrEpp();
break;
Expand Down
Loading

0 comments on commit c719d04

Please sign in to comment.