Skip to content

Commit b9baf86

Browse files
authored
Merge pull request #7 from A3S-Lab/fix/observer
Increase captured argument length
2 parents 4a7824a + 3c7eddd commit b9baf86

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)