Changeset 76190 in vbox for trunk/src/VBox/NetworkServices/Dhcpd/Config.cpp
- Timestamp:
- Dec 12, 2018 4:58:55 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/Dhcpd/Config.cpp
r76007 r76190 454 454 455 455 456 #define DHCPD_GETOPT_COMMENT 256 /* No short option for --comment */ 456 457 static const RTGETOPTDEF g_aOptions[] = 457 458 { 458 { "--config", 'c', RTGETOPT_REQ_STRING }, 459 { "--config", 'c', RTGETOPT_REQ_STRING }, 460 { "--comment", DHCPD_GETOPT_COMMENT, RTGETOPT_REQ_STRING } 459 461 }; 460 462 … … 494 496 495 497 break; 498 499 case DHCPD_GETOPT_COMMENT: /* --comment */ 500 /* The sole purpose of this option is to allow identification of DHCP 501 * server instances in the process list. We ignore the required string 502 * argument of this option. 503 */ 504 continue; 496 505 497 506 case VINF_GETOPT_NOT_OPTION:
Note:
See TracChangeset
for help on using the changeset viewer.