1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2025-12-06 00:13:33 +00:00

Fixed port mapping default ports.

This commit is contained in:
Ylian Saint-Hilaire
2020-11-07 13:29:52 -08:00
parent 64ca287a2f
commit 9958278fe6
2 changed files with 4 additions and 4 deletions

View File

@@ -105,8 +105,8 @@ namespace MeshCentralRouter
{
if (appComboBox.SelectedIndex == 1) { remoteNumericUpDown.Value = 80; }
if (appComboBox.SelectedIndex == 2) { remoteNumericUpDown.Value = 443; }
if (appComboBox.SelectedIndex == 3) { remoteNumericUpDown.Value = 3389; }
if (appComboBox.SelectedIndex == 4) { remoteNumericUpDown.Value = 22; }
if (appComboBox.SelectedIndex == 3) { remoteNumericUpDown.Value = 22; }
if (appComboBox.SelectedIndex == 4) { remoteNumericUpDown.Value = 3389; }
if (appComboBox.SelectedIndex == 5) { remoteNumericUpDown.Value = 22; }
}