mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-25 20:33:35 +00:00
Added configurable network interface name support to rascsi (#635)
* Added support for explicit network interface name to rascsi * Fixed patch_version for development build
This commit is contained in:
parent
0e6e710e52
commit
ed46262cca
@ -1299,7 +1299,14 @@ bool ParseArgument(int argc, char* argv[], int& port)
|
||||
device->set_unit(unit);
|
||||
device->set_type(type);
|
||||
device->set_block_size(block_size);
|
||||
AddParam(*device, "file", optarg);
|
||||
|
||||
// Either interface or file parameters are supported
|
||||
if (device_factory.GetDefaultParams(type).count("interfaces")) {
|
||||
AddParam(*device, "interfaces", optarg);
|
||||
}
|
||||
else {
|
||||
AddParam(*device, "file", optarg);
|
||||
}
|
||||
|
||||
size_t separator_pos = name.find(':');
|
||||
if (separator_pos != string::npos) {
|
||||
|
@ -14,7 +14,7 @@
|
||||
// The following should be updated for each release
|
||||
const int rascsi_major_version = 22; // Last two digits of year
|
||||
const int rascsi_minor_version = 01; // Month
|
||||
const int rascsi_patch_version = 01; // Patch number - increment for each update
|
||||
const int rascsi_patch_version = -1; // Patch number - increment for each update
|
||||
|
||||
static char rascsi_version_string[30]; // Allow for string up to "XX.XX.XXX" + null character + "development build"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user