update config ref

This commit is contained in:
Wengier
2021-06-28 03:07:26 -04:00
parent 22e5106bca
commit 751faa19a2
5 changed files with 6 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
0.83.15 0.83.15
- Improved the network redirector functions for the - Improved the network redirector functions for the
Windows platform, so that you can for example list, Windows platform, so that you can for example list,
open, write, copy, and execute files in a network open, write, copy, and execute files in UNC network
path in the form \\COMPUTER\FOLDER directly when paths in the form \\COMPUTER\FOLDER directly when
network redirector function is enabled and secure network redirector function is enabled and secure
mode is disabled on Windows systems. (Wengier) mode is disabled on Windows systems. (Wengier)
- MOUNT command followed by a drive letter only will - MOUNT command followed by a drive letter only will

View File

@@ -1967,6 +1967,7 @@ timeout = 0
# share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated. # share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated.
# file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems. # file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems.
# network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled. # network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled.
# You can also directly access UNC network paths in the form \MACHINE\SHARE even if they are not mounted as drives on Windows systems.
# Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment. # Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment.
#DOSBOX-X-ADV:# minimum dos initial private segment: In non-mainline mapping mode, where DOS structures are allocated from base memory, this sets the #DOSBOX-X-ADV:# minimum dos initial private segment: In non-mainline mapping mode, where DOS structures are allocated from base memory, this sets the
#DOSBOX-X-ADV:# minimum segment value. Recommended value is 0x70. You may reduce the value down to 0x50 if freeing #DOSBOX-X-ADV:# minimum segment value. Recommended value is 0x70. You may reduce the value down to 0x50 if freeing

View File

@@ -924,6 +924,7 @@ timeout = 0
# share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated. # share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated.
# file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems. # file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems.
# network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled. # network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled.
# You can also directly access UNC network paths in the form \MACHINE\SHARE even if they are not mounted as drives on Windows systems.
# Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment. # Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment.
# minimum mcb free: Minimum free segment value to leave free. At startup, the DOS kernel will allocate memory # minimum mcb free: Minimum free segment value to leave free. At startup, the DOS kernel will allocate memory
# up to this point. This can be used to deal with EXEPACK issues or DOS programs that cannot # up to this point. This can be used to deal with EXEPACK issues or DOS programs that cannot

View File

@@ -1911,6 +1911,7 @@ timeout = 0
# share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated. # share: Report SHARE.EXE as resident. This will allow file locking to be performed, although not all SHARE functions are emulated.
# file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems. # file access tries: If a positive integer is set, DOSBox-X will try to read/write/lock files directly on mounted local drives for the specified number of times before failing on Windows systems.
# network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled. # network redirector: Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled.
# You can also directly access UNC network paths in the form \MACHINE\SHARE even if they are not mounted as drives on Windows systems.
# Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment. # Set either "ipx=true" in [ipx] section or "ne2000=true" in [ne2000] section for a full network redirector environment.
# minimum dos initial private segment: In non-mainline mapping mode, where DOS structures are allocated from base memory, this sets the # minimum dos initial private segment: In non-mainline mapping mode, where DOS structures are allocated from base memory, this sets the
# minimum segment value. Recommended value is 0x70. You may reduce the value down to 0x50 if freeing # minimum segment value. Recommended value is 0x70. You may reduce the value down to 0x50 if freeing

View File

@@ -3868,6 +3868,7 @@ void DOSBOX_SetupConfigSections(void) {
Pbool = secprop->Add_bool("network redirector",Property::Changeable::WhenIdle,true); Pbool = secprop->Add_bool("network redirector",Property::Changeable::WhenIdle,true);
Pbool->Set_help("Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled.\n" Pbool->Set_help("Report DOS network redirector as resident. This will allow the host name to be returned unless the secure mode is enabled.\n"
"You can also directly access UNC network paths in the form \\MACHINE\\SHARE even if they are not mounted as drives on Windows systems.\n"
"Set either \"ipx=true\" in [ipx] section or \"ne2000=true\" in [ne2000] section for a full network redirector environment."); "Set either \"ipx=true\" in [ipx] section or \"ne2000=true\" in [ne2000] section for a full network redirector environment.");
Pbool->SetBasic(true); Pbool->SetBasic(true);