udhcpc6: add comments about option 39, no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2017-06-27 18:31:08 +02:00
parent f56ddf2e4c
commit 470bebe672
2 changed files with 42 additions and 2 deletions

View File

@@ -98,8 +98,12 @@ static const char opt_req[] = {
static const char opt_fqdn_req[] = {
(D6_OPT_CLIENT_FQDN >> 8), (D6_OPT_CLIENT_FQDN & 0xff),
0, 2,
0, 0
0, 2, /* optlen */
0, /* flags: */
/* S=0: server SHOULD NOT perform AAAA RR updates */
/* O=0: client MUST set this bit to 0 */
/* N=0: server SHOULD perform updates (PTR RR only in our case, since S=0) */
0 /* empty DNS-encoded name */
};
/*** Utility functions ***/