Skip to content

Commit

Permalink
fix: wrong package name
Browse files Browse the repository at this point in the history
  • Loading branch information
adedayo committed Oct 24, 2018
1 parent 9000f2f commit c12362f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions cmd/tlsaudit/tlsaudit.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"time"

"github.com/adedayo/cidr"
tlsaudit "github.com/adedayo/net/tlsaudit/pkg"
"github.com/adedayo/net/tlsaudit/pkg/model"
tlsaudit "github.com/adedayo/tlsaudit/pkg"
"github.com/adedayo/tlsaudit/pkg/model"
"gopkg.in/urfave/cli.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/golang/conn_tls.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"sync/atomic"
"time"

"github.com/adedayo/net/tlsaudit/pkg/model"
"github.com/adedayo/tlsaudit/pkg/model"
)

// A Conn represents a secured connection.
Expand Down
3 changes: 2 additions & 1 deletion pkg/golang/handshake_messages_tls.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ package gotls

import (
"bytes"
"github.com/adedayo/net/tlsaudit/pkg/model"
"strings"

"github.com/adedayo/tlsaudit/pkg/model"
)

type clientHelloMsg struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/handshake.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"time"

"github.com/adedayo/net/tlsaudit/pkg/golang"
"github.com/adedayo/net/tlsaudit/pkg/model"
"github.com/adedayo/tlsaudit/pkg/golang"
"github.com/adedayo/tlsaudit/pkg/model"
)

// HandShakeUpToKeyExchange starts the handshake up till the acquisition of server key exchanges
Expand Down
4 changes: 2 additions & 2 deletions pkg/tlsscan.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"sync"
"time"

"github.com/adedayo/net/tlsaudit/pkg/golang"
"github.com/adedayo/net/tlsaudit/pkg/model"
"github.com/adedayo/tcpscan"
"github.com/adedayo/tlsaudit/pkg/golang"
"github.com/adedayo/tlsaudit/pkg/model"
)

var (
Expand Down

0 comments on commit c12362f

Please sign in to comment.