Skip to content

Commit 53cca71

Browse files
authored
fix(ttls): correct Phase 2 method names for iwd compatibility (#128)
1 parent 6f2842c commit 53cca71

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • src/mode/station/auth/entreprise

src/mode/station/auth/entreprise/ttls.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@ use crate::{
2121
enum Phase2Method {
2222
#[default]
2323
MSCHAPV2,
24+
#[strum(serialize = "Tunneled-CHAP")]
2425
TunneledCHAP,
26+
#[strum(serialize = "Tunneled-MSCHAP")]
2527
TunneledMSCHAP,
28+
#[strum(serialize = "Tunneled-MSCHAPv2")]
2629
TunneledMSCHAPv2,
30+
#[strum(serialize = "Tunneled-PAP")]
2731
TunneledPAP,
2832
}
2933

0 commit comments

Comments
 (0)