@@ -307,7 +307,7 @@ func New(options LC.Tun, tunnel C.Tunnel, additions ...inbound.Addition) (l *Lis
307
307
defaultInterfaceMonitor : defaultInterfaceMonitor ,
308
308
}
309
309
if ! dialer .DefaultInterfaceFinder .CompareAndSwap (nil , l .cDialerInterfaceFinder ) {
310
- err = E .New ("don't allowed two tun listener using auto-detect-interface" )
310
+ err = E .New ("not allowed two tun listener using auto-detect-interface" )
311
311
return
312
312
}
313
313
}
@@ -450,7 +450,10 @@ func New(options LC.Tun, tunnel C.Tunnel, additions ...inbound.Addition) (l *Lis
450
450
}
451
451
if tunOptions .AutoRedirectMarkMode {
452
452
l .autoRedirectOutputMark = int32 (outputMark )
453
- dialer .DefaultRoutingMark .Store (l .autoRedirectOutputMark )
453
+ if ! dialer .DefaultRoutingMark .CompareAndSwap (0 , l .autoRedirectOutputMark ) {
454
+ err = E .New ("not allowed setting global routing-mark when working with autoRedirectMarkMode" )
455
+ return
456
+ }
454
457
l .autoRedirect .UpdateRouteAddressSet ()
455
458
l .ruleUpdateCallbackCloser = rpTunnel .RuleUpdateCallback ().Register (l .ruleUpdateCallback )
456
459
}
@@ -517,6 +520,15 @@ func (l *Listener) updateRule(ruleProvider provider.RuleProvider, exclude bool,
517
520
}
518
521
}
519
522
523
+ func (l * Listener ) OnReload () {
524
+ if l .autoRedirectOutputMark != 0 {
525
+ dialer .DefaultRoutingMark .CompareAndSwap (0 , l .autoRedirectOutputMark )
526
+ }
527
+ if l .cDialerInterfaceFinder != nil {
528
+ dialer .DefaultInterfaceFinder .CompareAndSwap (nil , l .cDialerInterfaceFinder )
529
+ }
530
+ }
531
+
520
532
type cDialerInterfaceFinder struct {
521
533
tunName string
522
534
defaultInterfaceMonitor tun.DefaultInterfaceMonitor
0 commit comments