From: Jan Janak Date: Wed, 31 Dec 2014 14:22:35 +0000 (+0100) Subject: Minor help string clarification for client-ID X-Git-Tag: debian/1.1+git20160131-1~36^2 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=odhcp6c.git;a=commitdiff_plain;h=da8ad1051e593e9adc6e30319dc33f3cac3189e9 Minor help string clarification for client-ID Document that the value of -c must be a 16-bit type (network byte order) followed by a client-ID value. For example, to use a UUID based client-ID (type 4, RFC 6355) one could use the following cmdline option: -c0004<128_bit_uuid_in_hex> --- diff --git a/src/odhcp6c.c b/src/odhcp6c.c index a37de91..8b5cb54 100644 --- a/src/odhcp6c.c +++ b/src/odhcp6c.c @@ -429,7 +429,7 @@ static int usage(void) " -F Force IPv6-Prefix\n" " -V Set vendor-class option (base-16 encoded)\n" " -u Set user-class option string\n" - " -c Override client-ID (base-16 encoded)\n" + " -c Override client-ID (base-16 encoded 16-bit type + value)\n" " -i Use a custom interface identifier for RA handling\n" " -r Options to be requested (comma-separated)\n" " -R Do not request any options except those specified with -r\n"