diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-07-29 15:36:55 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-07-29 15:36:55 +0200 |
commit | ac81d4cb5a80b265104e2719b00fd9c89fa82c2d (patch) | |
tree | 9b569ba109233eefbcf995a3fd57c35bb107d517 /src/state.rs | |
parent | e4aa66e2ac2a64e28c5c5b1522a43e58851bdcb8 (diff) |
enter authentication phase after lcp synchronization
Diffstat (limited to 'src/state.rs')
-rw-r--r-- | src/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.rs b/src/state.rs index 8f41d9c..4d3b2db 100644 --- a/src/state.rs +++ b/src/state.rs @@ -17,7 +17,7 @@ impl Default for Pppoe { #[derive(Clone, Debug, Eq, PartialEq)] pub enum Ppp { Synchronize(u8, u16, u32, usize), - SyncAck(u8, u16, u32, usize), + SyncAck(u8, u16, Option<AuthProto>, u32, usize), SyncAcked(usize), Auth(Option<AuthProto>), Active, |