Commit b03c6d6a authored by tepelmann's avatar tepelmann
Browse files

Added UDP packet template carrying data.

parent a028ac7e
Loading
Loading
Loading
Loading
+17 −4
Original line number Original line Diff line number Diff line
@@ -34,6 +34,19 @@
		}
		}
	}
	}
	
	
	template UdpPacket m_udpPkt_noExtHdr_data (Ipv6Address p_src,
												 Ipv6Address p_dst,
												 Oct2 p_srcPort,
												 Oct2 p_dstPort,
												 octetstring p_data
	) modifies m_udpPkt_noExtHdr_noData := {
		ipv6Payload := { 
			udpMsg := {
				data := p_data
			}
		}
	}
	
	/**
	/**
	 *	@desc	UDP Packet
	 *	@desc	UDP Packet
	*/
	*/