mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-07 01:37:30 +00:00
* Add `AF_PACKET` support * Update `.gitignore` * Support both `libpcap` and `AF_PACKET` at the same time * Fix linter errors * Fix a bug that introduced while fixing a linter error * Revert the changes related to `MaxBufferedPages` prefixed consts * #run_acceptance_tests * #run_acceptance_tests * Revert channel buffer size #run_acceptance_tests * Revert "Revert channel buffer size #run_acceptance_tests" This reverts commite62c3844cd. * Increase `cy.wait` from `500` to `1000` #run_acceptance_tests * Fix the `pcapHandle` handle * Revert "Increase `cy.wait` from `500` to `1000` #run_acceptance_tests" This reverts commit938c550e72. * #run_acceptance_tests * Handle the merge conflicts * Add `AF_XDP` support * Implement `Close()` of `AF_XDP` and fix linter errors * Fix `NewIPProtoProgram` function and internet protocol number * Pipe the packet stream from every network interface using `*pcapgo.NgReader` and `*pcapgo.NgWriter` Implement `SetDecoder` and `SetBPF` methods. * Fix `NewNgReader` call * Implement `Stats` method * Rebroadcast to the XDP socket * Add `-packet-capture` flag and make `AF_PACKET`, `AF_XDP` optional * #run_acceptance_tests * Fix `newAfXdpHandle` method * #run_acceptance_tests * Update tap/xdp/ipproto.c Co-authored-by: Nimrod Gilboa Markevich <59927337+nimrod-up9@users.noreply.github.com> * Update tap/xdp/ipproto.c Co-authored-by: Nimrod Gilboa Markevich <59927337+nimrod-up9@users.noreply.github.com> * Update tap/xdp/ipproto.c Co-authored-by: Nimrod Gilboa Markevich <59927337+nimrod-up9@users.noreply.github.com> * Fix several issues * Update tap/xdp/ipproto.c Co-authored-by: Nimrod Gilboa Markevich <59927337+nimrod-up9@users.noreply.github.com> * Fix `ipproto.c` * Remove `AF_XDP` * Comment on frameSize Co-authored-by: Nimrod Gilboa Markevich <59927337+nimrod-up9@users.noreply.github.com>
63 lines
899 B
Plaintext
63 lines
899 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
.idea/
|
|
build
|
|
|
|
# Mac OS
|
|
.DS_Store
|
|
.vscode/
|
|
|
|
# Ignore the scripts that are created for development
|
|
*dev.*
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# pprof
|
|
pprof/*
|
|
|
|
# Database Files
|
|
*.db
|
|
*.gob
|
|
|
|
# Nohup Files - https://man7.org/linux/man-pages/man1/nohup.1p.html
|
|
nohup.*
|
|
|
|
# Cypress tests
|
|
cypress.env.json
|
|
*/cypress/downloads
|
|
*/cypress/fixtures
|
|
*/cypress/plugins
|
|
*/cypress/screenshots
|
|
*/cypress/videos
|
|
*/cypress/support
|
|
|
|
# Ignore test data in extensions
|
|
tap/extensions/*/bin
|
|
tap/extensions/*/expect
|
|
|
|
# UI folders to ignore
|
|
**/node_modules/**
|
|
**/dist/**
|
|
*.editorconfig
|
|
ui/up9-mizu-common-0.0.0.tgz
|
|
|
|
# Ignore *.log files
|
|
*.log
|
|
|
|
# Object files
|
|
*.o
|