Skip to content

Commit

Permalink
Update module name + README installation info
Browse files Browse the repository at this point in the history
  • Loading branch information
VaiTon committed Jul 21, 2024
1 parent 6955055 commit e613258
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ More information on PCAP-over-IP can be found here:
* Read from stdin pcap data (for example from a `tcpdump` command)
* `pcap-broker` will exit if the capture command exits

## Installation

```shell
go install github.com/UlisseLab/pcap-broker@latest
```

## Building

To build `pcap-broker`:
Expand Down Expand Up @@ -40,7 +46,6 @@ Usage of ./pcap-broker:
enable json logging
-listen string
listen address for pcap-over-ip (eg: localhost:4242)
-n disable reverse lookup of connecting PCAP-over-IP client IP address
```

Arguments can be passed via commandline:
Expand Down
2 changes: 1 addition & 1 deletion cmd/pcap-broker/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"

"pcap-broker/pkg/pcapclient"
"github.com/UlisseLab/pcap-broker/pkg/pcapclient"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module pcap-broker
module github.com/UlisseLab/pcap-broker

go 1.20

Expand Down

0 comments on commit e613258

Please sign in to comment.