L3_Template: add template ts_GMM_AUTH_FAIL_UMTS_AKA_RESYNC

ts_GMM_AUTH_FAIL_UMTS_AKA_RESYNC send a Authentication & Ciphering failure
to resync the USIM with the HLR.

Change-Id: Ia58dc1483757887ca14cfae19e30f9c91fef5874
diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn
index 44d9e73..557b1b8 100644
--- a/library/L3_Templates.ttcn
+++ b/library/L3_Templates.ttcn
@@ -2112,6 +2112,28 @@
 	}
 }
 
+template PDU_L3_MS_SGSN ts_GMM_AUTH_FAIL_UMTS_AKA_RESYNC(octetstring auts) := {
+	discriminator := '1000'B,
+	tiOrSkip := {
+		skipIndicator := '0000'B
+	},
+	msgs := {
+		gprs_mm := {
+			authenticationAndCipheringFailure := {
+				messageType := '00011100'B,
+				gmmCause := {
+					causeValue := '15'O /* GMM_CAUSE_SYNC_FAIL 10.5.3.2.2 */
+				},
+				authenticationFailureParam := {
+					elementIdentifier := '30'O,
+					lengthIndicator := 14,
+					valueField := auts
+				}
+			}
+		}
+	}
+}
+
 
 const BIT3 c_GMM_DTT_MO_GPRS := '001'B;
 const BIT3 c_GMM_DTT_MO_IMSI := '010'B;