Exemplo n.º 1
0
        protected void PopulateReplyMsgOptions()
        {
            Dictionary <int, DhcpOption> optionMap = dhcpServerConfig.EffectiveMsgOptions(this.requestMsg);

            if (DhcpServerPolicies.GlobalPolicyAsBoolean(Property.SEND_REQUESTED_OPTIONS_ONLY))
            {
                optionMap = this.RequestedOptions(optionMap, this.requestMsg);
            }

            this.replyMsg.PutAllDhcpOptions(optionMap);
        }