Skip to content

Commit

Permalink
iplookup: remove akamai IP lookup method
Browse files Browse the repository at this point in the history
It seems we cannot access this service without using domain
fronting and we need to use the a248.e.akamai.net SNI to get
a valid certificate. So, I don't want to make this fix more
complicated than it needs to be. We will remove this IP lookup
method and hopefully OONI will work better.

Closes #317.

I also don't feel super guilty in removing one lookup method
we have an issue to add more: https://github.com/ooni/probe-engine/issues/16
  • Loading branch information
bassosimone committed Feb 24, 2020
1 parent a61e380 commit 42c1923
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 42 deletions.
37 changes: 0 additions & 37 deletions geoiplookup/iplookup/akamai/akamai.go

This file was deleted.

5 changes: 0 additions & 5 deletions geoiplookup/iplookup/iplookup.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import (
"sync"
"time"

"github.com/ooni/probe-engine/geoiplookup/iplookup/akamai"
"github.com/ooni/probe-engine/geoiplookup/iplookup/avast"
"github.com/ooni/probe-engine/geoiplookup/iplookup/ubuntu"
"github.com/ooni/probe-engine/log"
Expand All @@ -31,10 +30,6 @@ type method struct {

var (
methods = []method{
{
name: "akamai",
fn: akamai.Do,
},
{
name: "avast",
fn: avast.Do,
Expand Down

0 comments on commit 42c1923

Please sign in to comment.