Commit 37dabe9d authored by nikolajev's avatar nikolajev
Browse files

GTP Header version field fixed to 3 Bits(used to be 1 bit)

parent 22e6a14c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ module LibGtp_Templates {

	template GTPv1_MSG m_gtp_v1_dummy := {
		header := {
			version := '1'B,
			version := '001'B,
			PT := '1'B,
			spare := '0'B,
			E_flag := '0'B,
@@ -42,7 +42,7 @@ module LibGtp_Templates {

	template GTPv1_MSG m_gtp_v1(octetstring p_messagetype) := {
		header := {
			version := '1'B,
			version := '001'B,
			PT := '0'B,
			spare := '0'B,
			E_flag := '1'B,
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ module LibGtp_TypesAndValues {
	 * @reference ETSI TS 129281 v10.3.0, section 5.1
	 */
	type record GTPv1_Header {
		Bit1 version,
		Bit3 version,
		Bit1 PT,
		Bit1 spare,
		Bit1 E_flag,