-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f32348
commit e993000
Showing
3 changed files
with
113 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
package elibpcap | ||
|
||
import "github.com/cilium/ebpf/asm" | ||
|
||
type Options struct { | ||
AtBpf2Bpf string | ||
AtBpf2Bpf string | ||
DirectRead bool | ||
L2Skb bool | ||
} | ||
|
||
func (o Options) resultLabel() string { | ||
return "_result_" + o.AtBpf2Bpf | ||
} | ||
|
||
func (o Options) labelPrefix() string { | ||
return "_prefix_" + o.AtBpf2Bpf | ||
} | ||
|
||
func (o Options) result() asm.Register { | ||
return asm.R0 | ||
} |