コード例 #1
0
 /**
  * Instantiates a new dhcp config options.
  *
  * @param configOptions the config options
  */
 public DhcpV6ConfigOptions(v6ConfigOptionsType configOptions)
 {
     if ((configOptions != null))
     {
         this.configOptions = configOptions;
     }
     else
     {
         this.configOptions = new v6ConfigOptionsType();
     }
     //暫時無設定Option
     this.InitDhcpOptionMap();
 }
コード例 #2
0
 public void SetV6ConfigOptions(v6ConfigOptionsType configOptions)
 {
     this.configOptions = configOptions;
     //  reset the option map
     InitDhcpOptionMap();
 }