Commit 02bfb306 authored by garciay's avatar garciay
Browse files

Change 'record of' into 'set of' for DHCPv6Options

Add 'variant "unsigned 16 bit"' for DHCPv6Options
Change 'record of' into 'set of' for OptionRequestOption
parent 8e9888d3
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@
    /**
     * @desc List of options collected from different RFCs.
     */
    type record of DHCPv6Option DHCPv6Options;
    type set of DHCPv6Option DHCPv6Options;
    
    /**
     * @desc Collection of option codes defined in several RFCs.
@@ -162,6 +162,9 @@
      e_OPTION_AFTR_NAME (64),
      e_OPTION_UNKNOWN
    } 
    with {
        variant "unsigned 16 bit"
    }
    
  } //end group dhcpOptions
  
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@
    type record OptionRequestOption {
      OptionCode        optionCode(e_OPTION_ORO),
      UInt16            optionLen,
      record of UInt16  requestedOptionCodes
      set of OptionCode requestedOptionCodes
    }
    
    /**