Skip to content

Commit

Permalink
improve mod
Browse files Browse the repository at this point in the history
  • Loading branch information
Arikato111 committed Jun 15, 2024
1 parent 04ef7b6 commit 749e51b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/openflow/ofp10/events/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ pub use payload::Payload;
pub mod echo_request;
pub use echo_request::EchoRequestEvent;

pub mod echo_reply;
pub mod echo_reply;
pub use echo_reply::EchoReplyEvent;
5 changes: 4 additions & 1 deletion src/openflow/ofp10/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ pub mod ofp_port;
pub use ofp_port::PseudoPort;

pub mod events;
pub use events::{ErrorEvent, FlowModEvent, HelloEvent, PacketInEvent, PacketOutEvent};
pub use events::{
Action, EchoReplyEvent, EchoRequestEvent, ErrorEvent, FlowModEvent, HelloEvent, PacketInEvent,
PacketOutEvent,
};

pub mod ofp_header;
pub use ofp_header::OfpHeader;
Expand Down

0 comments on commit 749e51b

Please sign in to comment.