Skip to content

Commit ae18851

Browse files
committed
move to honnef.co import path
1 parent eb43bd2 commit ae18851

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

README renamed to README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1-
This is a reimplementation of the netstat-nat[1] tool, written
1+
# netstat-nat
2+
3+
This is a reimplementation of the
4+
[netstat-nat](http://tweegy.nl/projects/netstat-nat/) tool, written
25
entirely in Go. It uses the same command line flags and almost the
36
same output format so it can be used as a drop-in replacement in most
47
cases.
58

6-
Differences
7-
-----------
9+
## Install
10+
11+
```sh
12+
go get -u honnef.co/go/netstat-nat
13+
```
14+
15+
## Differences
816

917
- The original version limits the printed hostnames to fixed width. We
1018
do not.
@@ -13,8 +21,3 @@ Differences
1321
hostnames.
1422

1523
- The -N flag is not yet supported.
16-
17-
Links
18-
-----
19-
20-
[1]: http://tweegy.nl/projects/netstat-nat/

netstat-nat.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
"github.com/dominikh/conntrack"
5-
"github.com/dominikh/netdb"
4+
"honnef.co/go/conntrack"
5+
"honnef.co/go/netdb"
66

77
flag "github.com/ogier/pflag"
88

0 commit comments

Comments
 (0)