Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
7384846
fix(hardware): Bind NICs whose kernel driver was never loaded
daniel-noland Aug 23, 2026
dade045
test(dataplane): Answer a request from where it landed
daniel-noland Aug 24, 2026
6959477
fix(nat): Find a burst's flow under the key it was filed under
daniel-noland Aug 24, 2026
5a1e40e
feat(config): Let the algebra build a static-nat expose
daniel-noland Aug 24, 2026
d7ffbd1
test(dataplane): Give an inbound load addresses its hosts hold
daniel-noland Aug 24, 2026
1906fef
feat(config): Let the algebra build a port-forwarding expose
daniel-noland Aug 24, 2026
59b6002
feat(config): Let the algebra put an ACL on a peering
daniel-noland Aug 24, 2026
131cf2d
test(config): Take the census into the ACL schema
daniel-noland Aug 24, 2026
db4bf7b
feat(config): Let the algebra permit a peering by flow rather than by…
daniel-noland Aug 24, 2026
5533515
feat(config): Let one ACL rule name part of a peering and another the…
daniel-noland Aug 24, 2026
36f6ca8
feat(config): Name a gateway group, a rule's logging, and an idle tim…
daniel-noland Aug 24, 2026
633608f
feat(config): Narrow a rule by protocol, by port, and by destination
daniel-noland Aug 24, 2026
9028808
feat(config): Narrow a forwarded expose to one transport protocol
daniel-noland Aug 24, 2026
c9a0331
feat(config): Carve a slice out of the middle of an expose's ranges
daniel-noland Aug 24, 2026
0ff33b2
feat(config): Let an expose stand for everything
daniel-noland Aug 24, 2026
334f87e
test(dataplane): Require an excluded address to be unreachable
daniel-noland Aug 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/src/external/overlay/acl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,8 @@ impl ValidatedAclRule {

#[derive(Debug, Clone, PartialEq, Eq, Default)]
pub struct Acl {
default: AclAction,
rules: Vec<AclRule>,
pub(crate) default: AclAction,
pub(crate) rules: Vec<AclRule>,
}

impl Acl {
Expand Down
Loading
Loading