DIAMETER_Templates: Add missing ts_AVP_DestinationHost

Change-Id: Ifcbd68c48b273fe7b0753c5b31c33d4e51493de9
diff --git a/library/DIAMETER_Templates.ttcn b/library/DIAMETER_Templates.ttcn
index 05a6ea7..05b63d2 100644
--- a/library/DIAMETER_Templates.ttcn
+++ b/library/DIAMETER_Templates.ttcn
@@ -601,6 +601,14 @@
 	}
 }
 
+template (value) GenericAVP ts_AVP_DestinationHost(template (value) charstring dest_host) := {
+	avp := {
+		avp_header := ts_DIA_Hdr(c_AVP_Code_BASE_NONE_Destination_Host),
+		avp_data := {
+			avp_BASE_NONE_Destination_Host := dest_host
+		}
+	}
+}
 template (present) GenericAVP tr_AVP_DestinationHost(template (present) charstring host := ?) := {
 	avp := {
 		avp_header := tr_DIA_Hdr(c_AVP_Code_BASE_NONE_Destination_Host),