Commit 723fab08 authored by validator's avatar validator
Browse files

""

parent e5f59b13
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
@@ -546,6 +546,28 @@
			data := omit
		}

		/*
		 *	@param  p_src Binary IPv6 address associated with the
		 *          test component.
		 *	@param  p_dst Binary IPv6 address associated with NUT.
		 *	@param  p_mtu MTU value to be sent.
		*/
		template PacketTooBig m_packetTooBig_noExtHdr_mtu_data (
			template Ipv6Address p_src,
			template Ipv6Address p_dst,
			UInt32 p_mtu,
			octetstring p_data
		) := {
			ipv6Hdr := m_ipHdr_nextHdr_srcDst(c_icmpHdr, p_src, p_dst),
			extHdrList := omit,
			icmpType:= c_packetTooBig,
			icmpCode:= c_icmpCode0,
			checksum:= c_2ZeroBytes,
			mtu := p_mtu,
			data := p_data
		}


		/*
		 *	@param  p_src Binary IPv6 address associated with the
		 *          test component.
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@
						c_rFlag0,
						c_sFlag1,
						c_oFlag0,
						p_addrNutND,
						p_addrTnND,
						m_nbrAdvOpt_tllaOpt ( p_macAddrTn ) ) );
					if ( v_ret != e_success ) { return v_ret; }