mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-04-02 00:37:12 +00:00
* multiple netns listen - initial commit * multiple netns listen - actual work * remove redundant log line * map /proc of host to tapper * changing kubernetes provider again after big conflict * revert node-sass version back to 5.0.0 * Rename host_source to hostSource Co-authored-by: gadotroee <55343099+gadotroee@users.noreply.github.com> * PR fixes - adding comment + typos + naming conventions * go fmt + making procfs read only * setns back to the original value after packet source initialized Co-authored-by: gadotroee <55343099+gadotroee@users.noreply.github.com>
18 lines
512 B
Modula-2
18 lines
512 B
Modula-2
module github.com/up9inc/mizu/tap
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/bradleyfalzon/tlsx v0.0.0-20170624122154-28fd0e59bac4
|
|
github.com/go-errors/errors v1.4.1
|
|
github.com/google/gopacket v1.1.19
|
|
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
|
|
github.com/up9inc/mizu/shared v0.0.0
|
|
github.com/up9inc/mizu/tap/api v0.0.0
|
|
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f
|
|
)
|
|
|
|
replace github.com/up9inc/mizu/tap/api v0.0.0 => ./api
|
|
|
|
replace github.com/up9inc/mizu/shared v0.0.0 => ../shared
|