Skip to content

Commit 3c7eddd

Browse files
committed
Increase captured argument length
1 parent 2581487 commit 3c7eddd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

a3s-observer-common/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/// Up to `ARGV_SLOTS` arguments, each truncated to `ARG_LEN` bytes, are captured per exec —
1212
/// the args carry the agent's intent (`curl <url>`, `sh -c "<cmd>"`), not just the binary.
1313
pub const ARGV_SLOTS: usize = 12;
14-
pub const ARG_LEN: usize = 64;
14+
pub const ARG_LEN: usize = 128;
1515

1616
#[repr(C)]
1717
#[derive(Clone, Copy)]

0 commit comments

Comments
 (0)