void
Dhcpv6Srv::appendRequestedOptions(const Pkt6Ptr& question, Pkt6Ptr& answer,
- AllocEngine::ClientContext6& ctx,
const CfgOptionList& co_list) {
// Client requests some options using ORO option. Try to
CfgOptionList co_list;
buildCfgOptionList(solicit, ctx, co_list);
appendDefaultOptions(solicit, response, co_list);
- appendRequestedOptions(solicit, response, ctx, co_list);
+ appendRequestedOptions(solicit, response, co_list);
appendRequestedVendorOptions(solicit, response, ctx, co_list);
processClientFqdn(solicit, response, ctx);
CfgOptionList co_list;
buildCfgOptionList(request, ctx, co_list);
appendDefaultOptions(request, reply, co_list);
- appendRequestedOptions(request, reply, ctx, co_list);
+ appendRequestedOptions(request, reply, co_list);
appendRequestedVendorOptions(request, reply, ctx, co_list);
processClientFqdn(request, reply, ctx);
CfgOptionList co_list;
buildCfgOptionList(renew, ctx, co_list);
appendDefaultOptions(renew, reply, co_list);
- appendRequestedOptions(renew, reply, ctx, co_list);
+ appendRequestedOptions(renew, reply, co_list);
processClientFqdn(renew, reply, ctx);
extendLeases(renew, reply, ctx);
CfgOptionList co_list;
buildCfgOptionList(rebind, ctx, co_list);
appendDefaultOptions(rebind, reply, co_list);
- appendRequestedOptions(rebind, reply, ctx, co_list);
+ appendRequestedOptions(rebind, reply, co_list);
processClientFqdn(rebind, reply, ctx);
extendLeases(rebind, reply, ctx);
CfgOptionList co_list;
buildCfgOptionList(confirm, ctx, co_list);
appendDefaultOptions(confirm, reply, co_list);
- appendRequestedOptions(confirm, reply, ctx, co_list);
+ appendRequestedOptions(confirm, reply, co_list);
// Indicates if at least one address has been verified. If no addresses
// are verified it means that the client has sent no IA_NA options
// or no IAAddr options and that client's message has to be discarded.
appendDefaultOptions(inf_request, reply, co_list);
// Try to assign options that were requested by the client.
- appendRequestedOptions(inf_request, reply, ctx, co_list);
+ appendRequestedOptions(inf_request, reply, co_list);
return (reply);
}