File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ public interface ISettingsChangedListener
26
26
/// <summary>
27
27
/// Notify that settings have changed
28
28
/// </summary>
29
+ /// <param name="newSettings">New settings</param>
30
+ /// <param name="inUpdate">Whether the settings listener is already in update</param>
29
31
/// <returns>Task</returns>
30
- System . Threading . Tasks . Task SettingsChanged ( Settings newSettings ) ;
32
+ System . Threading . Tasks . Task SettingsChanged ( Settings newSettings , bool inUpdate ) ;
31
33
}
32
34
}
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ public class Machine
145
145
public string Status { get ; set ; }
146
146
147
147
/// <summary>
148
- /// Comma separated ip addresses to always allow on just this machine
148
+ /// Comma separated ip addresses to always allow on just this machine. Can use | to delimit with allowed ports (all other ports are blocked).
149
149
/// </summary>
150
150
[ DisplayFormat ( ConvertEmptyStringToNull = false ) ]
151
151
[ Required ( AllowEmptyStrings = true ) ]
You can’t perform that action at this time.
0 commit comments