Skip to content

Commit 5db1ce1

Browse files
committed
remove
1 parent fd30206 commit 5db1ce1

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src2/ssl_read.c

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,4 @@ void BPF_UPROBE(ssl_read_enter_v3, void* ssl, void* buffer, int num) {
2323
ssl_uprobe_read_enter_v3(ctx, id, pid, ssl, buffer, num, 0);
2424
}
2525

26-
SEC("uretprobe/SSL_read")
27-
void BPF_URETPROBE(ssl_ret_read_v3) {
28-
__u64 pid_tgid = bpf_get_current_pid_tgid();
29-
__u64 pid = pid_tgid >> 32;
30-
__u64 id = pid_tgid | TLS_MASK;
31-
32-
int returnValue = PT_REGS_RC(ctx);
33-
34-
process_exit_of_syscalls_read_recvfrom(ctx, id, pid, returnValue, 1);
35-
}
36-
3726
char LICENSE[] SEC("license") = "Dual BSD/GPL";

0 commit comments

Comments
 (0)