/****************************************************************************** * Copyright (c) 2000-2023 Ericsson Telecom AB * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html * * Contributors: * Gabor Szalai - initial implementation and initial documentation * Gergely Futo * Laszlo Skumat * Pinter Norbert * Oliver Ferenc Czerman * Peter Balazs * Koppány Csaba Béla * Kulcsár Endre * Szalai Zsolt ******************************************************************************/ module SIPexample { import from SIPmsg_Types all; import from SIPmsg_PortType all; import from SIPexampleTemplates all; modulepar float tsp_SIP_Perf_Encode_Duration; modulepar float tsp_SIP_Perf_Decode_Duration; type component SipInterfaces { port SIPmsg_PT SYSPORT; } type component SIP_CT { port SIPmsg_PT PORT; } // This test requires an installed softphone client (e.g. Ekiga). // Start the softphone program and set ip and port that this client listen on // in the configuration file (PX_ETS_IPADDR2 and PX_ETS_PORT2 parameters). // By default most of the softphone clients listen on local ip and port 5060. // To check it use command: netstat -tulpn | grep ekiga // Run this testcase, it will call the softphone client, answer the call. // After 2 seconds the testcase will break the call. // /*PlantUML diagram: @startuml skinparam sequenceMessageAlign center demo -> softphone : INVITE ... messages until not 200 OK ... demo <- softphone : 200 OK demo -> softphone : ACK ... 2 seconds ... demo -> softphone : BYE demo <- softphone : 200 OK @enduml */ testcase MakeCall() runs on SIP_CT system SipInterfaces { timer T:=15.0; timer T2:=2.0; var ASP_SIP_close v_close:={addr:={ remote_host:= omit, remote_port:= omit, local_host:=PX_ETS_IPADDR, local_port:=PX_ETS_PORT, protocol:=UDP_E }} var ASP_SIP_open v_open:={addr:={ remote_host:= omit, remote_port:= omit, local_host:=PX_ETS_IPADDR, local_port:=PX_ETS_PORT, protocol:=UDP_E }} var ASP_SIP_Response asp_resp; var PDU_SIP_Response resp; var ASP_SIP_Request asp_reque; var SIP_comm_adress addr:={ remote_host:= PX_ETS_IPADDR2, remote_port:= PX_ETS_PORT2, local_host:=omit, local_port:=omit, protocol:=UDP_E }; var charstring toFieldTag:=""; asp_reque.request:=valueof(INVITE_Request_s_1); asp_reque.addr:=addr; map(self:PORT,system:SYSPORT); //open UDP port PORT.send(v_open); T2.start; alt{ [] T2.timeout {} } //first we send our INVITE SIP message to the other side log("send INVITE on UDP"); PORT.send(asp_reque) ; T.start; //we wait for the 200 OK response, and we send back an ACK message //if there is no 200 OK, than we set our verdict to fail and stop the process alt { [] PORT.receive(PDU_SIP_Response:?) -> value resp { log(resp); if(resp.statusLine.statusCode == 200){ asp_reque.request:=valueof(ACK_Request_s_1); if(ispresent(resp.msgHeader.toField.toParams[0].paramValue)){ toFieldTag:=resp.msgHeader.toField.toParams[0].paramValue; } if(ispresent(resp.messageBody)){ asp_reque.request.messageBody:=resp.messageBody; asp_reque.request.msgHeader.contentType:=resp.msgHeader.contentType; asp_reque.request.msgHeader.contentLength:=resp.msgHeader.contentLength; } asp_reque.addr:=addr; asp_reque.request.msgHeader.toField.toParams[0]:={ id:="tag", paramValue:=toFieldTag }; PORT.send(asp_reque); setverdict(pass); }else{ repeat; } } [] PORT.receive(ASP_SIP_Response:?) -> value asp_resp { log(asp_resp); if(asp_resp.response.statusLine.statusCode == 200){ asp_reque.request:=valueof(ACK_Request_s_1); if(ispresent(asp_resp.response.msgHeader.toField.toParams[0].paramValue)){ toFieldTag:=asp_resp.response.msgHeader.toField.toParams[0].paramValue; } if(ispresent(asp_resp.response.messageBody)){ asp_reque.request.messageBody:=asp_resp.response.messageBody; asp_reque.request.msgHeader.contentType:=asp_resp.response.msgHeader.contentType; asp_reque.request.msgHeader.contentLength:=asp_resp.response.msgHeader.contentLength; } asp_reque.addr:=addr; asp_reque.request.msgHeader.toField.toParams[0]:={ id:="tag", paramValue:=toFieldTag }; PORT.send(asp_reque); setverdict(pass); }else{ repeat; } } [] PORT.receive { repeat; } [] T.timeout {setverdict(fail); stop;} } //wait a little and send a BYE message T2.start; alt { [] T2.timeout { asp_resp.addr:=addr; asp_reque.request:=valueof(BYE_Request_s_1); asp_reque.request.msgHeader.toField.toParams[0]:={ id:="tag", paramValue:=toFieldTag }; PORT.send(asp_reque); } } //wait for the 200 OK response T.start; alt { [] PORT.receive(PDU_SIP_Response:?) -> value resp { log(resp); if(resp.statusLine.statusCode == 200){ setverdict(pass); }else{ repeat; } } [] PORT.receive(ASP_SIP_Response:?) -> value asp_resp { log(asp_resp); if(asp_resp.response.statusLine.statusCode == 200){ setverdict(pass); }else{ repeat; } } [] PORT.receive { repeat; } [] T.timeout {setverdict(fail); stop;} } //close UDP port PORT.send(v_close); T2.start; alt{ [] T2.timeout {} } unmap(self:PORT,system:SYSPORT); } testcase fv_teszt() runs on SIP_CT system SipInterfaces{ var charstring ch:="INVITE sip:+00617040000000@164.48.133.21 SIP/2.0\r\nt: sip:+00617040000000@164.48.133.21\r\nFrom: Sinisa Marovic ;tag=0.063312\r\nP-Early-Media:\r\nP-Early-Media:\r\nP-Early-Media: sendrecv, token\r\nP-Early-Media:\r\nP-Early-Media: token2\r\nP-Early-Media:token3, token4\r\nCall-ID: 0.063312\r\nCSeq: 1 INVITE\r\nVia: SIP/2.0/TCP AQUIS195.ERICSSON.SE:5060;branch=z9hG4bK0.063312;received=164.48.130.58\r\nContent-Length: 12\r\n\r\nqwertyuiop[]" var PDU_SIP pdu:=f_SIP_decode(ch); log(pdu); ch:=f_SIP_encode(pdu); log(ch); ch:=f_SIP_encode_formatted(pdu,false,false); log(ch); ch:=f_SIP_encode_formatted(pdu,false,true); log(ch); ch:=f_SIP_encode_formatted(pdu,true,false); log(ch); ch:=f_SIP_encode_formatted(pdu,true,true); log(ch); if(ischosen(pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } testcase encdec_teszt() runs on SIP_CT system SipInterfaces{ var charstring ch:="INVITE sip:+12345![5-6]!@SIP.EDD.AACHEN.DE;user=phone SIP/2.0\r\nSession-ID:1234567890qwertyuiopasdfghjklzxc\r\nMax-Forwards: 70\r\nTo:tel:+12345![2-3]*!\r\nP-Asserted-Identity:sip:+33221120@SIP.ZAGREB.HR;user=phone\r\nRack: 1 4294967291 INVITE\r\nFrom:sip:+33221120@SIP.ZAGREB.HR;user=phone;tag=1295741737\r\nAccept: application/sdp\r\nAllow: INVITE,ACK,BYE,CANCEL\r\nContent-Type: application/sdp\r\nMIME-Version: 1.0\r\nCSeq: 1 INVITE\r\nCall-ID: XA007030315200809@SIP.ZAGREB.HR\r\nContact: \r\nVia:SIP/2.0/UDP SIP.ZAGREB.HR;branch=z9hG4bk542740812\r\nP-Served-User: ; sescase=orig; regstate=reg\r\nContent-Length: 236\r\nP-DCS-LAES: laes.valami.com:222 ; content =akarmi.com:11; content= akarmi.com; key=asja\r\nP-Profile-Key: \r\nP-User-Database: \r\n\r\nv=0\r\no=- 4686582 4686582 IN IP4 0.0.0.0\r\ns=-\r\na=sendrecv\r\nt=0 0\r\nm=audio 0 RTP/AVP 97 8\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:97 AMR/8000\r\na=fmtp:97 mode-set=0,2,4,7mode-change-period=2mode-change-neighbor=1\r\na=rtpmap:8 PCMA/8000\r\na=maxptime:40\r\n" var PDU_SIP pdu; log(ch); pdu:=f_SIP_decode(ch); log(pdu); ch:=f_SIP_encode(pdu); log(ch); pdu:=f_SIP_decode(ch,-,true); log(pdu); if(ischosen(pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } testcase encdec_teszt_CR_TR00018886() runs on SIP_CT system SipInterfaces{ var charstring ch:="INVITE sip:+00617040000000@164.48.133.21 SIP/2.0\r\nSession-ID:1234567890qwertyuiopasdfghjklzxc\r\nMax-Forwards: 70\r\nTo: Sinisa Marovic ;tag=0.063312\r\nAccept-Resource-Priority:dns.flash,dns.routine\r\nAccept-Resource-Priority:dns.flash2\r\nResource-Priority:dns.flash,dns.routine\r\nResource-Priority:dns.flash2\r\nRack: 1 4294967291 INVITE\r\nFrom:sip:+33221120@SIP.ZAGREB.HR;user=phone;tag=1295741737\r\nAccept: application/sdp\r\nAllow: INVITE,ACK,BYE,CANCEL\r\nContent-Type: application/sdp\r\nMIME-Version: 1.0\r\nCSeq: 1 INVITE\r\nCall-ID: XA007030315200809@SIP.ZAGREB.HR\r\nContact: \r\nVia:SIP/2.0/UDP SIP.ZAGREB.HR;branch=z9hG4bk542740812\r\nP-Served-User: ; sescase=orig; regstate=reg\r\nContent-Length: 236\r\nP-DCS-LAES: laes.valami.com:222 ; content =akarmi.com:11; content= akarmi.com; key=asja\r\nP-Profile-Key: \r\nP-User-Database: \r\n\r\nv=0\r\no=- 4686582 4686582 IN IP4 0.0.0.0\r\ns=-\r\na=sendrecv\r\nt=0 0\r\nm=audio 0 RTP/AVP 97 8\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:97 AMR/8000\r\na=fmtp:97 mode-set=0,2,4,7mode-change-period=2mode-change-neighbor=1\r\na=rtpmap:8 PCMA/8000\r\na=maxptime:40\r\n" var PDU_SIP pdu; log(ch); pdu:=f_SIP_decode(ch); log(pdu); ch:=f_SIP_encode(pdu); log(ch); pdu:=f_SIP_decode(ch); log(pdu); if(ischosen(pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } testcase HL63067() runs on SIP_CT system SipInterfaces{ var charstring ch:="INVITE sip:+12345@SIP.EDD.AACHEN.DE;user=phone SIP/2.0\r\nSession-ID:1234567890qwertyuiopasdfghjklzxc\r\nMax-Forwards: 70\r\nTo:sip:+12345@SIP.EDD.AACHEN.DE;user=phone\r\nFrom:sip:+33221120@SIP.ZAGREB.HR;user=phone;tag=1295741737\r\nContent-Type: application/sdp\r\nMIME-Version: 1.0\r\nCSeq: 1 INVITE\r\nCall-ID: XA007030315200809@SIP.ZAGREB.HR\r\nVia:SIP/2.0/UDP SIP.ZAGREB.HR;branch=z9hG4bk542740812\r\nContent-Length: 236\r\nP-DCS-Redirect: \"sip:+12345@SIP.EDD.AACHEN.DE;user=phone;valami=\"akarmi\"\";redirector-uri=\"ip:+12345@SIP.EDD.AACHEN.DE;user=phone\" ;count = 11\r\n\r\nv=0\r\no=- 4686582 4686582 IN IP4 0.0.0.0\r\ns=-\r\na=sendrecv\r\nt=0 0\r\nm=audio 0 RTP/AVP 97 8\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:97 AMR/8000\r\na=fmtp:97 mode-set=0,2,4,7mode-change-period=2mode-change-neighbor=1\r\na=rtpmap:8 PCMA/8000\r\na=maxptime:40\r\n" var PDU_SIP pdu; log(ch); pdu:=f_SIP_decode(ch); log(pdu); ch:=f_SIP_encode(pdu); log(ch); pdu:=f_SIP_decode(ch); log(pdu); if(ischosen(pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } testcase HN25835() runs on SIP_CT system SipInterfaces{ var charstring ch:="SIP/2.0 401 Unauthorized\r\nCall-ID:TTCN3314714000000@2607:F0D0:2001:000A:0000:0000:0000:0012\r\nCSeq:51656337 REGISTER\r\nFrom:sip:1300@[2607:f0d0:2001:a::09];tag=3005120\r\nTo:sip:1300@[2607:f0d0:2001:a::09];tag=05ac9eb768a5c50f2276eecfdefb5652.10a8\r\nVia:SIP/2.0/UDP [2607:F0D0:2001:000A:0000:0000:0000:0012]:5062;branch=z9hG4bK1407653T000000;received=2607:F0D0:2001:A:0:0:0:12\r\nWWW-Authenticate: Digest realm=\"[2607:f0d0:2001:a::09]\", nonce=\"TNlaHkzZWPJoyVue7LnKkK5Hv1RJqXnL\"\r\nServer: kamailio (3.1.0 (x86_64/linux))\r\nContent-Length: 0\r\n\r\n" var PDU_SIP pdu; log(ch); pdu:=f_SIP_decode(ch); log(pdu); ch:=f_SIP_encode(pdu); log(ch); pdu:=f_SIP_decode(ch); log(pdu); if(ischosen(pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } testcase encdec_teszt_CR_TR00019031() runs on SIP_CT system SipInterfaces{ var charstring ch:="INVITE sip:+00617040000000@164.48.133.21 SIP/2.0\r\nSession-ID:1234567890qwertyuiopasdfghjklzxc\r\nMax-Forwards: 70\r\nTo: Sinisa Marovic ;tag=0.063312\r\nAccept-Resource-Priority:dns.flash,dns.routine\r\nAccept-Resource-Priority:dns.flash2\r\nResource-Priority:dns.flash,dns.routine\r\nResource-Priority:dns.flash2\r\nRack: 1 4294967291 INVITE\r\nFrom:sip:+33221120@SIP.ZAGREB.HR;user=phone;tag=1295741737\r\nAccept: application/sdp\r\nAllow: INVITE,ACK,BYE,CANCEL\r\nContent-Type: application/sdp\r\nMIME-Version: 1.0\r\nCSeq: 1 INVITE\r\nCall-ID: XA007030315200809@SIP.ZAGREB.HR\r\nContact: \r\nVia:SIP/2.0/UDP SIP.ZAGREB.HR;branch=z9hG4bk542740812\r\nP-Served-User: ; sescase=orig; regstate=reg\r\nP-Service-Notification: conference-established\r\nP-Service-Indication: CCBS\r\nContent-Length: 236\r\nP-DCS-LAES: laes.valami.com:222 ; content =akarmi.com:11; content= akarmi.com; key=asja\r\nP-Profile-Key: \r\nP-User-Database: \r\n\r\nv=0\r\no=- 4686582 4686582 IN IP4 0.0.0.0\r\ns=-\r\na=sendrecv\r\nt=0 0\r\nm=audio 0 RTP/AVP 97 8\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:97 AMR/8000\r\na=fmtp:97 mode-set=0,2,4,7mode-change-period=2mode-change-neighbor=1\r\na=rtpmap:8 PCMA/8000\r\na=maxptime:40\r\n" var PDU_SIP pdu; log(ch); pdu:=f_SIP_decode(ch); log(pdu); ch:=f_SIP_encode(pdu); log(ch); pdu:=f_SIP_decode(ch); log(pdu); if(ischosen(pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } type record of PDU_SIP PDU_SIP_List; const PDU_SIP_List cg_pdu_REGISTERs := { { request := { requestLine := { method := REGISTER_E, requestUri := { scheme := "sip", userInfo := omit, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3271519000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "10.251.64.1", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "40" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 938661025, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "5181480" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK6723395T000000" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit ,p_last_access_network_info:=omit}, messageBody := omit, payload := omit } }, { request := { requestLine := { method := REGISTER_E, requestUri := { scheme := "sip", userInfo := omit, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3538753000000@10.251.64.2" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "40" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1780030354, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "7591300" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.2", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK7697783T000000" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit ,p_last_access_network_info:=omit}, messageBody := omit, payload := omit } }, { request := { requestLine := { method := REGISTER_E, requestUri := { scheme := "sip", userInfo := omit, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3271519000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "10.251.64.1", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "3600" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 938661026, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "557500" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK8289992T000006" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit ,p_last_access_network_info:=omit}, messageBody := omit, payload := omit } }, { request := { requestLine := { method := REGISTER_E, requestUri := { scheme := "sip", userInfo := omit, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3538753000000@10.251.64.2" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "3600" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1780030355, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "1790110" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.2", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK6555023T000001" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit ,p_last_access_network_info:=omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := REGISTER_E, requestUri := { scheme := "sip", userInfo := omit, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit ,p_last_access_network_info:=omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3538753000000@10.251.64.2" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { wildcard := "*" } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1780030356, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := { fieldName := EXPIRES_E, deltaSec := "0" }, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "2740600" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.2", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK9441341T000002" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := REGISTER_E, requestUri := { scheme := "sip", userInfo := omit, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit ,p_last_access_network_info:=omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3271519000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { wildcard := "*" } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 938661027, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := { fieldName := EXPIRES_E, deltaSec := "0" }, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "4240450" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK1330283T000008" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } } }; const PDU_SIP_List cg_pdu_INVITEs := { { request := { requestLine := { method := INVITE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit ,p_last_access_network_info:=omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3462630000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "10.251.64.1", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 148 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1132358719, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "7947090" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5892004T000001" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=titansim_user_7460903 0 0 IN IP4 10.252.128.1\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.1\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { request := { requestLine := { method := INVITE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit ,p_last_access_network_info:=omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := { fieldName := ACCEPT_CONTACT_E, ac_values := { { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } }, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 145 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := { fieldName := MIN_SE_E, deltaSec := "900", params := omit }, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465903", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := { fieldName := SESSION_EXPIRES_E, deltaSec := "1800", se_params := omit }, session_id := { fieldName := SESSION_ID_E, sessionID := "e830fd34d838dc3cc24096279b2a932d", se_params := omit }, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=- 1463648050 2415716364 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1336 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { request := { requestLine := { method := INVITE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3339453000001@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "10.251.64.1", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 148 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2128830184, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "1685251" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5758470T000003" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=titansim_user_7460903 0 0 IN IP4 10.252.128.1\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.1\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { request := { requestLine := { method := INVITE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit ,p_last_access_network_info:=omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := { fieldName := ACCEPT_CONTACT_E, ac_values := { { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } }, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 145 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := { fieldName := MIN_SE_E, deltaSec := "900", params := omit }, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465903", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := { fieldName := SESSION_EXPIRES_E, deltaSec := "1800", se_params := omit }, session_id := { fieldName := SESSION_ID_E, sessionID := "e730ff34db38dc3cc2409527982a9a2d", se_params := omit }, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=- 1622303681 2427729309 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1340 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { request := { requestLine := { method := INVITE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3896530000002@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "10.251.64.1", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 148 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1893517227, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "4647382" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5404040T000005" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=titansim_user_7460903 0 0 IN IP4 10.252.128.1\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.1\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { request := { requestLine := { method := INVITE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit ,p_last_access_network_info:=omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := { fieldName := ACCEPT_CONTACT_E, ac_values := { { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } }, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 145 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := { fieldName := MIN_SE_E, deltaSec := "900", params := omit }, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465903", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := { fieldName := SESSION_EXPIRES_E, deltaSec := "1800", se_params := omit }, session_id := { fieldName := SESSION_ID_E, sessionID := "e930fd34d838dc3cc2409a279e2a972d", se_params := omit }, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := omit }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=- 1879944689 2439738600 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1344 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } } }; const PDU_SIP_List cg_pdu_ACKs := { { request := { requestLine := { method := ACK_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit ,p_last_access_network_info:=omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3462630000000@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1132358719, method := "ACK" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "7947090" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := { fieldName := ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5480734T000001" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := ACK_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit ,p_last_access_network_info:=omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "ACK" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ildq5owiuxgvn7dnt4yyp2p5oj" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := ACK_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit ,p_last_access_network_info:=omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3339453000001@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2128830184, method := "ACK" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "1685251" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := { fieldName := ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK6375769T000003" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := ACK_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit ,p_last_access_network_info:=omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "ACK" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ido18hppndet3udv5dq1dgtfz1" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := ACK_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit ,p_last_access_network_info:=omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3896530000002@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1893517227, method := "ACK" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "4647382" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := { fieldName := ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK6963539T000005" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := ACK_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit ,p_last_access_network_info:=omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "ACK" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7idc3h5wd4vfglptoetj3l7rw8r" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } } }; const PDU_SIP_List cg_pdu_BYEs := { { request := { requestLine := { method := BYE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit ,p_last_access_network_info:=omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3462630000000@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1132358720, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "7947090" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := { fieldName := ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK8326206T000002" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := BYE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit ,p_last_access_network_info:=omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7i6pqs93gxydchhds61cot7df58" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := BYE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit ,p_last_access_network_info:=omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3339453000001@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2128830185, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "1685251" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := { fieldName := ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK737290T000004" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := BYE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit ,p_last_access_network_info:=omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7i1gt1uq3sq6uy12cuy99xwvnw2" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := BYE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit ,p_last_access_network_info:=omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3896530000002@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1893517228, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, fromParams := { { id := "tag", paramValue := "4647382" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 70 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := { fieldName := ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK7520932T000007" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { request := { requestLine := { method := BYE_E, requestUri := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit }, sipVersion := "SIP/2.0" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit ,p_last_access_network_info:=omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := { fieldName := MAX_FORWARDS_E, forwards := 68 }, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7i56m2bxzhfvrt4ttlx9fh3s7ul" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } } }; const PDU_SIP_List cg_pdu_200s := { { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit ,p_last_access_network_info:=omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3271519000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "10.251.64.1", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "40" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 938661025, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "5181480" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := { fieldName := P_ASSOCIATED_URI, p_assoc_uris := { { p_asso_uri := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, ai_params := omit }, { p_asso_uri := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465903", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } }, ai_params := omit } } }, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_68fe6996045b6f520972085863f6911" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK6723395T000000" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit ,p_last_access_network_info:=omit, p_Service_Notification := omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3538753000000@10.251.64.2" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "40" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1780030354, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "7591300" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := { fieldName := P_ASSOCIATED_URI, p_assoc_uris := { { p_asso_uri := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, ai_params := omit }, { p_asso_uri := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465905", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } }, ai_params := omit } } }, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_07d2a3b0046ec7870972085864c0d3e" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.2", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK7697783T000000" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 148 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=titansim_user_7460905 0 0 IN IP4 10.252.128.2\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.2\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3462630000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 145 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1132358719, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "7947090" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465905", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := { fieldName := SESSION_EXPIRES_E, deltaSec := "1800", se_params := { { id := "refresher", paramValue := "uas" } } }, session_id := { fieldName := SESSION_ID_E, sessionID := "e830fd34d838dc3cc24096279b2a932d", se_params := omit }, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5892004T000001" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=- 1421560351 2425758746 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1334 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7i6pqs93gxydchhds61cot7df58" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3462630000000@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1132358720, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "7947090" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK8326206T000002" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 148 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=titansim_user_7460905 0 0 IN IP4 10.252.128.2\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.2\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3339453000001@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 145 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2128830184, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "1685251" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465905", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := { fieldName := SESSION_EXPIRES_E, deltaSec := "1800", se_params := { { id := "refresher", paramValue := "uas" } } }, session_id := { fieldName := SESSION_ID_E, sessionID := "e730ff34db38dc3cc2409527982a9a2d", se_params := omit }, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5758470T000003" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=- 2124997959 2437766068 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1338 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7i1gt1uq3sq6uy12cuy99xwvnw2" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3339453000001@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2128830185, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "1685251" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK737290T000004" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3271519000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "10.251.64.1", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "1890" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 938661026, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "557500" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := { fieldName := P_ASSOCIATED_URI, p_assoc_uris := { { p_asso_uri := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, ai_params := omit }, { p_asso_uri := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465903", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } }, ai_params := omit } } }, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_68fe6996045baee90972085ff4fb566" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK8289992T000006" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3538753000000@10.251.64.2" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "1890" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1780030355, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "1790110" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := { fieldName := P_ASSOCIATED_URI, p_assoc_uris := { { p_asso_uri := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, ai_params := omit }, { p_asso_uri := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465905", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } }, ai_params := omit } } }, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_07d2a3b0046f15060972085ff5c9ddb" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.2", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK6555023T000001" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { addrSpecUnion := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 148 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=titansim_user_7460905 0 0 IN IP4 10.252.128.2\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.2\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3896530000002@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "+g.3gpp.icsi-ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" }, { id := "+g.3gpp.icsi_ref", paramValue := "\"urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel\"" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 145 }, contentType := { fieldName := CONTENT_TYPE_E, mediaType := "application/sdp" }, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1893517227, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "4647382" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465905", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := { fieldName := SESSION_EXPIRES_E, deltaSec := "1800", se_params := { { id := "refresher", paramValue := "uas" } } }, session_id := { fieldName := SESSION_ID_E, sessionID := "e930fd34d838dc3cc2409a279e2a972d", se_params := omit }, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5404040T000005" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := "v=0\r\no=- 1681524988 2449776927 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1342 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n", payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7i56m2bxzhfvrt4ttlx9fh3s7ul" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3896530000002@10.251.64.1" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1893517228, method := "BYE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "4647382" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK7520932T000007" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3538753000000@10.251.64.2" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "0" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1780030356, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "2740600" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_07d2a3b0046e9878097208613d50a22" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.2", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK9441341T000002" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 200, reasonPhrase := "OK" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3271519000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "10.251.64.1", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := { { id := "expires", paramValue := "0" } } } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 938661027, method := "REGISTER" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "4240450" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := omit, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_68fe6996045be032097208613d03b0f" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK1330283T000008" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } } }; const PDU_SIP_List cg_pdu_180s := { { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 212214508 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3462630000000@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1132358719, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "7947090" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465905", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 2 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5892004T000001" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 212214508 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 212214508 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 212214508 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 212214508 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 577635298 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3339453000001@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 2128830184, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "1685251" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465905", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 2 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5758470T000003" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 577635298 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 577635298 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 577635298 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 577635298 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 987069172 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := { fieldName := ALLOW_E, methods := { "REGISTER", "REFER", "NOTIFY", "SUBSCRIBE", "UPDATE", "PRACK", "INVITE", "ACK", "OPTIONS", "CANCEL", "BYE" } }, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "TTCN3896530000002@10.251.64.1" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "sgc_c", password := omit }, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1893517227, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "4647382" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := { fieldName := P_ASSERTED_ID_E, ids := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, { nameAddr := { displayName := omit, addrSpec := { scheme := "tel", userInfo := { userOrTelephoneSubscriber := "+4687465905", password := omit }, hostPort := { host := omit, portField := omit }, urlParameters := omit, headers := omit } } } } }, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 2 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := { fieldName := SUPPORTED_E, optionsTags := { "timer" } }, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.251.64.1", portField := 15010 }, viaParams := { { id := "branch", paramValue := "z9hG4bK5404040T000005" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 987069172 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 987069172 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 987069172 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 180, reasonPhrase := "Ringing" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := { fieldName := CONTACT_E, contactBody := { contactAddresses := { { addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "10.251.64.2", portField := 15010 }, urlParameters := { { id := "transport", paramValue := "udp" } }, headers := omit } } }, contactParams := omit } } } }, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := { fieldName := RSEQ_E, response_num := 987069172 }, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := { fieldName := REQUIRE_E, optionsTags := { "100rel" } }, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } } }; const PDU_SIP_List cg_pdu_100s := { { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 100, reasonPhrase := "Trying" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2415716433-522303726" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "9727050" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 100, reasonPhrase := "Trying" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2427729377-582400364" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "6622331" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } }, { response := { statusLine := { sipVersion := "SIP/2.0", statusCode := 100, reasonPhrase := "Trying" }, msgHeader := { x_FCI := omit, x_CHGInfo := omit ,x_CHGDelay := omit, recv_Info := omit, p_Service_Notification := omit ,p_last_access_network_info:=omit, p_Service_Indication := omit, p_preferred_service := omit, x_Carrier_Info := omit, x_AUT := omit, target_dialog := omit, resourcePriority := omit, geolocation := omit, geolocation_routing := omit, geolocation_error := omit, feature_caps := omit, acceptResourcePriority := omit, info_Package := omit, p_Area_Info := omit, p_asserted_service := omit, accept := omit, accept_contact := omit, acceptEncoding := omit, acceptLanguage := omit, alertInfo := omit, alert_mode := omit, allow := omit, allow_events := omit, answer_mode := omit, authenticationInfo := omit, authorization := omit, callId := { fieldName := CALL_ID_E, callid := "2439738664-681284072" }, callInfo := omit, contact := omit, contentDisposition := omit, contentEncoding := omit, contentLanguage := omit, contentLength := { fieldName := CONTENT_LENGTH_E, len := 0 }, contentType := omit, conversation_ID := omit, contribution_ID := omit, cSeq := { fieldName := CSEQ_E, seqNumber := 1, method := "INVITE" }, date := omit, diversion := omit, errorInfo := omit, event := omit, expires := omit, fromField := { fieldName := FROM_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465903", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, fromParams := { { id := "tag", paramValue := "h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390" } } }, historyInfo := omit, inReplyTo := omit, inReplyTo_contribution_ID := omit, join := omit, maxForwards := omit, message_Expires := omit, message_UID := omit, mimeVersion := omit, minExpires := omit, min_SE := omit, organization := omit, p_access_network_info := omit, p_alerting_mode := omit, p_answer_state := omit, passertedID := omit, p_associated_uri := omit, p_called_party_id := omit, p_charging_function_address := omit, p_charging_vector := omit, p_DCS_trace_pty_id := omit, p_DCS_OSPS := omit, p_DCS_billing_info := omit, p_DCS_LAES := omit, p_DCS_redirect := omit, p_Early_Media := omit, p_media_auth := omit, ppreferredID := omit, p_profile_key := omit, p_served_user := omit, p_user_database := omit, p_visited_network_id := omit, path := omit, priv_answer_mode := omit, priority := omit, privacy := omit, proxyAuthenticate := omit, proxyAuthorization := omit, proxyRequire := omit, rack := omit, rseq := omit, reason := omit, recordRoute := { fieldName := RECORD_ROUTE_E, routeBody := { { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := omit, hostPort := { host := "10.80.36.132", portField := omit }, urlParameters := { { id := "transport", paramValue := "udp" }, { id := "lr", paramValue := omit } }, headers := omit } }, rrParam := omit } } }, reject_contact := omit, refer_sub := omit, refer_to := omit, referred_by := omit, replyTo := omit, replaces := omit, require := omit, request_disp := omit, retryAfter := omit, route := omit, security_client := omit, security_server := omit, security_verify := omit, session_expires := omit, session_id := omit, session_Replaces := omit, server := omit, service_route := omit, sip_ETag := omit, sip_If_Match := omit, subject := omit, subscription_state := omit, supported := omit, timestamp := omit, toField := { fieldName := TO_E, addressField := { nameAddr := { displayName := omit, addrSpec := { scheme := "sip", userInfo := { userOrTelephoneSubscriber := "titansim_user_7465905", password := omit }, hostPort := { host := "tcj.ics.se", portField := omit }, urlParameters := omit, headers := omit } } }, toParams := { { id := "tag", paramValue := "410652" } } }, unsupported := omit, userAgent := omit, via := { fieldName := VIA_E, viaBody := { { sentProtocol := { protocolName := "SIP", protocolVersion := "2.0", transport := "UDP" }, sentBy := { host := "10.80.36.132", portField := 5060 }, viaParams := { { id := "branch", paramValue := "z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk" } } } } }, warning := omit, wwwAuthenticate := omit, undefinedHeader_List := omit }, messageBody := omit, payload := omit } } } function f_SIP_Perf_EncDec_genraw(in PDU_SIP_List pl_pdus) return EPTF_CharstringList { var EPTF_CharstringList vl_ret; for (var integer i := 0; i= sizeof(pl_pdus)) { vl_i := 0; } vl_pdu := f_SIP_decode(vl_raw[vl_i], pl_ipv6enabled); timer T_dummy := 0.0; T_dummy.start; // repeat the whole process till duration timeout alt { []TL_ellapsed.timeout { vl_loop := false; } []T_dummy.timeout { } } vl_i := vl_i + 1; vl_cnt := vl_cnt + 1; } return int2float(vl_cnt)/pl_duration; } function f_SIP_Perf_EncDec_NOTIFY_dec( in float pl_duration, in boolean pl_ipv6enabled := tsp_SIPmsg_ipv6enabled) return float { var charstring vl_raw := f_SIP_Perf_EncDec_genNOTIFY_raw(); var PDU_SIP vl_pdu; var boolean vl_loop := true; var integer vl_cnt := 0; timer TL_ellapsed := pl_duration; TL_ellapsed.start; while (vl_loop) { vl_pdu := f_SIP_decode(vl_raw, pl_ipv6enabled); timer T_dummy := 0.0; T_dummy.start; // repeat the whole process till duration timeout alt { []TL_ellapsed.timeout { vl_loop := false; } []T_dummy.timeout { } } vl_cnt := vl_cnt + 1; } return int2float(vl_cnt)/pl_duration; } function f_SIP_Perf_EncDec_general_enc( in PDU_SIP_List pl_pdus, in float pl_duration) return float { var charstring vl_raw; var boolean vl_loop := true; var integer vl_i := 0; var integer vl_cnt := 0; timer TL_ellapsed := pl_duration; TL_ellapsed.start; while (vl_loop) { if (vl_i >= sizeof(pl_pdus)) { vl_i := 0; } vl_raw := f_SIP_encode(pl_pdus[vl_i]); timer T_dummy := 0.0; T_dummy.start; // repeat the whole process till duration timeout alt { []TL_ellapsed.timeout { vl_loop := false; } []T_dummy.timeout { } } vl_i := vl_i + 1; vl_cnt := vl_cnt + 1; } return int2float(vl_cnt)/pl_duration; } function f_SIP_Perf_EncDec_NOTIFY_enc( in float pl_duration) return float { var charstring vl_raw; var PDU_SIP vl_pdu; var boolean vl_loop := true; var integer vl_cnt := 0; vl_pdu.request := valueof(NOTIFY_Request_s_2); timer TL_ellapsed := pl_duration; TL_ellapsed.start; while (vl_loop) { vl_raw := f_SIP_encode(vl_pdu); timer T_dummy := 0.0; T_dummy.start; // repeat the whole process till duration timeout alt { []TL_ellapsed.timeout { vl_loop := false; } []T_dummy.timeout { } } vl_cnt := vl_cnt + 1; } return int2float(vl_cnt)/pl_duration; } function f_Float_Avg(in EPTF_FloatList pl_floats) return float { var float vl_ret := 0.0; var integer vl_size := sizeof(pl_floats); for (var integer i := 0; i decode failed!"); } // INVITE for (var integer i := 0; i decode failed!"); } } // REGISTER for (var integer i := 0; i decode failed!"); } } // ACK for (var integer i := 0; i decode failed!"); } } // BYE for (var integer i := 0; i decode failed!"); } } // 100 for (var integer i := 0; i decode failed!"); } } // 180 for (var integer i := 0; i decode failed!"); } } // 200 for (var integer i := 0; i decode failed!"); } } if (getverdict == pass) { log("Encode-decode test passed."); } } function f_SIP_Perf_calcPrecentage(in float f, in float t) return integer{ return float2int((t-f)*100.0/f); } function f_SIP_Perf_Dec(in float pl_duration) { setverdict(pass); f_SIP_Perf_checkEncDec(); var float vl_INVITE_dec := 0.0; var float vl_NOTIFY_dec := 0.0; var float vl_REGISTER_dec := 0.0; var float vl_ACK_dec := 0.0; var float vl_BYE_dec := 0.0; var float vl_100_dec := 0.0; var float vl_180_dec := 0.0; var float vl_200_dec := 0.0; log("Test duration : ",pl_duration, "s"); pl_duration := pl_duration / 8.0; vl_INVITE_dec := f_SIP_Perf_EncDec_general_dec(cg_pdu_INVITEs, pl_duration); log("INVITE decode: ", vl_INVITE_dec); vl_NOTIFY_dec := f_SIP_Perf_EncDec_NOTIFY_dec(pl_duration); log("NOTIFY decode: ", vl_NOTIFY_dec); vl_REGISTER_dec := f_SIP_Perf_EncDec_general_dec(cg_pdu_REGISTERs, pl_duration); log("REGISTER decode: ", vl_REGISTER_dec); vl_ACK_dec := f_SIP_Perf_EncDec_general_dec(cg_pdu_ACKs, pl_duration); log("ACK decode: ", vl_ACK_dec); vl_BYE_dec := f_SIP_Perf_EncDec_general_dec(cg_pdu_BYEs, pl_duration); log("BYE decode: ", vl_BYE_dec); vl_100_dec := f_SIP_Perf_EncDec_general_dec(cg_pdu_100s, pl_duration); log("resp. 100 decode: ", vl_100_dec); vl_180_dec := f_SIP_Perf_EncDec_general_dec(cg_pdu_180s, pl_duration); log("resp. 180 decode: ", vl_100_dec); vl_200_dec := f_SIP_Perf_EncDec_general_dec(cg_pdu_200s, pl_duration); log("resp. 200 decode: ", vl_100_dec); } testcase tc_SIP_Perf_Dec() runs on SIP_CT { f_SIP_Perf_Dec(tsp_SIP_Perf_Decode_Duration); } type record EPTF_SIP_SIP_Msg { integer len, PDU_SIP_List pdus, EPTF_CharstringList raw_pdus } type record of EPTF_SIP_SIP_Msg EPTF_SIP_SIP_Msg_List; function f_SIP_Perf_Add_Message(inout EPTF_SIP_SIP_Msg_List pl_list, in PDU_SIP pl_pdu) { var charstring vl_raw; var integer vl_len; var integer i; vl_raw := f_SIP_encode(pl_pdu); vl_len := lengthof(vl_raw); for (i:=0; i i and isvalue(pl_list[i].pdus)) { vl_last := sizeof(pl_list[i].pdus); } pl_list[i].len := vl_len; pl_list[i].pdus[vl_last] := pl_pdu; pl_list[i].raw_pdus[vl_last] := vl_raw; } function f_SIP_Perf_Analize_Messages() return EPTF_SIP_SIP_Msg_List { var PDU_SIP vt_pdu; var EPTF_SIP_SIP_Msg_List vl_ret := {}; // NOTIFY vt_pdu.request := valueof(NOTIFY_Request_s_2) f_SIP_Perf_Add_Message(vl_ret, vt_pdu); // INVITE for (var integer i := 0; i\r\nAccept-Contact: *;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nMin-Se: 900\r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nRequire: 100rel\r\nSession-Expires: 1800\r\nSupported: timer\r\nContent-Type: application/sdp\r\nContent-Length: 145\r\nSession-ID: e830fd34d838dc3cc24096279b2a932d\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\nv=0\r\no=- 1463648050 2415716364 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1336 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_5, true)); const charstring cl_msg_6 := "SIP/2.0 100 Trying\r\nCall-ID:2415716433-522303726\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nRecord-Route:\r\nTo:;tag=9727050\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7\r\n\r\n"; log(f_SIP_decode(cl_msg_6, true)); const charstring cl_msg_7 := "SIP/2.0 180 Ringing\r\nCall-ID:2415716433-522303726\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:212214508\r\nTo:;tag=9727050\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7\r\n\r\n"; log(f_SIP_decode(cl_msg_7, true)); const charstring cl_msg_8 := "SIP/2.0 180 Ringing\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5892004T000001\r\nTo: ;tag=h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656\r\nFrom: ;tag=7947090\r\nCall-ID: TTCN3462630000000@10.251.64.1\r\nCSeq: 1132358719 INVITE\r\nContact: \r\nRecord-Route: \r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nRequire: 100rel\r\nRSeq: 2\r\nSupported: timer\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_8, true)); const charstring cl_msg_9 := "SIP/2.0 180 Ringing\r\nCall-ID:2415716433-522303726\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:212214508\r\nTo:;tag=9727050\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7\r\n\r\n"; log(f_SIP_decode(cl_msg_9, true)); const charstring cl_msg_10 := "SIP/2.0 180 Ringing\r\nCall-ID:2415716433-522303726\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:212214508\r\nTo:;tag=9727050\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7\r\n\r\n"; log(f_SIP_decode(cl_msg_10, true)); const charstring cl_msg_11 := "SIP/2.0 180 Ringing\r\nCall-ID:2415716433-522303726\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:212214508\r\nTo:;tag=9727050\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7\r\n\r\n"; log(f_SIP_decode(cl_msg_11, true)); const charstring cl_msg_12 := "SIP/2.0 180 Ringing\r\nCall-ID:2415716433-522303726\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:212214508\r\nTo:;tag=9727050\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7\r\n\r\n"; log(f_SIP_decode(cl_msg_12, true)); const charstring cl_msg_13 := "SIP/2.0 200 OK\r\nCall-ID:2415716433-522303726\r\nContact:sip:titansim_user_7465905@tcj.ics.se\r\nContent-Length:148\r\nContent-Type:application/sdp\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nRecord-Route:\r\nTo:;tag=9727050\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ijvf8nt4gloqbfno11cr1t73d7\r\n\r\nv=0\r\no=titansim_user_7460905 0 0 IN IP4 10.252.128.2\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.2\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_13, true)); const charstring cl_msg_14 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5892004T000001\r\nTo: ;tag=h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656\r\nFrom: ;tag=7947090\r\nCall-ID: TTCN3462630000000@10.251.64.1\r\nCSeq: 1132358719 INVITE\r\nContact: ;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nRecord-Route: \r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nSession-Expires: 1800;refresher=uas\r\nSupported: timer\r\nContent-Type: application/sdp\r\nContent-Length: 145\r\nSession-ID: e830fd34d838dc3cc24096279b2a932d\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\nv=0\r\no=- 1421560351 2425758746 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1334 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_14, true)); const charstring cl_msg_15 := "ACK sip:sgc_c@10.80.36.132;transport=udp SIP/2.0\r\nCall-ID:TTCN3462630000000@10.251.64.1\r\nContent-Length:0\r\nCSeq:1132358719 ACK\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=7947090\r\nMax-Forwards:70\r\nRoute:\r\nTo:;tag=h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5480734T000001\r\n\r\n"; log(f_SIP_decode(cl_msg_15, true)); const charstring cl_msg_16 := "ACK sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nMax-Forwards: 68\r\nVia: SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ildq5owiuxgvn7dnt4yyp2p5oj\r\nTo: ;tag=9727050\r\nFrom: ;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nCall-ID: 2415716433-522303726\r\nCSeq: 1 ACK\r\nContact: ;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nContent-Length: 0\r\n\r\n"; log(f_SIP_decode(cl_msg_16, true)); const charstring cl_msg_17 := "BYE sip:sgc_c@10.80.36.132;transport=udp SIP/2.0\r\nCall-ID:TTCN3462630000000@10.251.64.1\r\nContent-Length:0\r\nCSeq:1132358720 BYE\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=7947090\r\nMax-Forwards:70\r\nRoute:\r\nTo:;tag=h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK8326206T000002\r\n\r\n"; log(f_SIP_decode(cl_msg_17, true)); const charstring cl_msg_18 := "BYE sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nMax-Forwards: 68\r\nVia: SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7i6pqs93gxydchhds61cot7df58\r\nTo: ;tag=9727050\r\nFrom: ;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nCall-ID: 2415716433-522303726\r\nCSeq: 2 BYE\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_18, true)); const charstring cl_msg_19 := "SIP/2.0 200 OK\r\nCall-ID:2415716433-522303726\r\nContent-Length:0\r\nCSeq:2 BYE\r\nFrom:;tag=h7g4Esbg_p65541t1280237677m369283c32717242s1_2415716492-1150032924\r\nTo:;tag=9727050\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7i6pqs93gxydchhds61cot7df58\r\n\r\n"; log(f_SIP_decode(cl_msg_19, true)); const charstring cl_msg_20 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK8326206T000002\r\nTo: ;tag=h7g4Esbg_p65541t1280237677m311202c32718158s1_2415655292-483516656\r\nFrom: ;tag=7947090\r\nCall-ID: TTCN3462630000000@10.251.64.1\r\nCSeq: 1132358720 BYE\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_20, true)); const charstring cl_msg_21 := "INVITE sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3339453000001@10.251.64.1\r\nContact:\r\nContent-Length:148\r\nContent-Type:application/sdp\r\nCSeq:2128830184 INVITE\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=1685251\r\nMax-Forwards:70\r\nRequire:100rel\r\nTo:\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5758470T000003\r\n\r\nv=0\r\no=titansim_user_7460903 0 0 IN IP4 10.252.128.1\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.1\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_21, true)); const charstring cl_msg_22 := "INVITE sip:titansim_user_7465905@10.251.64.2:15010;transport=udp SIP/2.0\r\nMax-Forwards: 68\r\nVia: SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw\r\nTo: \r\nFrom: ;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nCall-ID: 2427729377-582400364\r\nCSeq: 1 INVITE\r\nContact: ;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nRecord-Route: \r\nAccept-Contact: *;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nMin-Se: 900\r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nRequire: 100rel\r\nSession-Expires: 1800\r\nSupported: timer\r\nContent-Type: application/sdp\r\nContent-Length: 145\r\nSession-ID: e730ff34db38dc3cc2409527982a9a2d\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\nv=0\r\no=- 1622303681 2427729309 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1340 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_22, true)); const charstring cl_msg_23 := "SIP/2.0 100 Trying\r\nCall-ID:2427729377-582400364\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nRecord-Route:\r\nTo:;tag=6622331\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw\r\n\r\n"; log(f_SIP_decode(cl_msg_23, true)); const charstring cl_msg_24 := "SIP/2.0 180 Ringing\r\nCall-ID:2427729377-582400364\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:577635298\r\nTo:;tag=6622331\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw\r\n\r\n"; log(f_SIP_decode(cl_msg_24, true)); const charstring cl_msg_25 := "SIP/2.0 180 Ringing\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5758470T000003\r\nTo: ;tag=h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462\r\nFrom: ;tag=1685251\r\nCall-ID: TTCN3339453000001@10.251.64.1\r\nCSeq: 2128830184 INVITE\r\nContact: \r\nRecord-Route: \r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nRequire: 100rel\r\nRSeq: 2\r\nSupported: timer\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_25, true)); const charstring cl_msg_26 := "SIP/2.0 180 Ringing\r\nCall-ID:2427729377-582400364\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:577635298\r\nTo:;tag=6622331\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw\r\n\r\n"; log(f_SIP_decode(cl_msg_26, true)); const charstring cl_msg_27 := "SIP/2.0 180 Ringing\r\nCall-ID:2427729377-582400364\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:577635298\r\nTo:;tag=6622331\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw\r\n\r\n"; log(f_SIP_decode(cl_msg_27, true)); const charstring cl_msg_28 := "SIP/2.0 180 Ringing\r\nCall-ID:2427729377-582400364\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:577635298\r\nTo:;tag=6622331\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw\r\n\r\n"; log(f_SIP_decode(cl_msg_28, true)); const charstring cl_msg_29 := "SIP/2.0 180 Ringing\r\nCall-ID:2427729377-582400364\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:577635298\r\nTo:;tag=6622331\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw\r\n\r\n"; log(f_SIP_decode(cl_msg_29, true)); const charstring cl_msg_30 := "SIP/2.0 200 OK\r\nCall-ID:2427729377-582400364\r\nContact:sip:titansim_user_7465905@tcj.ics.se\r\nContent-Length:148\r\nContent-Type:application/sdp\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nRecord-Route:\r\nTo:;tag=6622331\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7igc6wvjsmgcr4eyb4jojvheckw\r\n\r\nv=0\r\no=titansim_user_7460905 0 0 IN IP4 10.252.128.2\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.2\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_30, true)); const charstring cl_msg_31 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5758470T000003\r\nTo: ;tag=h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462\r\nFrom: ;tag=1685251\r\nCall-ID: TTCN3339453000001@10.251.64.1\r\nCSeq: 2128830184 INVITE\r\nContact: ;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nRecord-Route: \r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nSession-Expires: 1800;refresher=uas\r\nSupported: timer\r\nContent-Type: application/sdp\r\nContent-Length: 145\r\nSession-ID: e730ff34db38dc3cc2409527982a9a2d\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\nv=0\r\no=- 2124997959 2437766068 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1338 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_31, true)); const charstring cl_msg_32 := "ACK sip:sgc_c@10.80.36.132;transport=udp SIP/2.0\r\nCall-ID:TTCN3339453000001@10.251.64.1\r\nContent-Length:0\r\nCSeq:2128830184 ACK\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=1685251\r\nMax-Forwards:70\r\nRoute:\r\nTo:;tag=h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK6375769T000003\r\n\r\n"; log(f_SIP_decode(cl_msg_32, true)); const charstring cl_msg_33 := "ACK sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nMax-Forwards: 68\r\nVia: SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ido18hppndet3udv5dq1dgtfz1\r\nTo: ;tag=6622331\r\nFrom: ;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nCall-ID: 2427729377-582400364\r\nCSeq: 1 ACK\r\nContact: ;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nContent-Length: 0\r\n\r\n"; log(f_SIP_decode(cl_msg_33, true)); const charstring cl_msg_34 := "BYE sip:sgc_c@10.80.36.132;transport=udp SIP/2.0\r\nCall-ID:TTCN3339453000001@10.251.64.1\r\nContent-Length:0\r\nCSeq:2128830185 BYE\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=1685251\r\nMax-Forwards:70\r\nRoute:\r\nTo:;tag=h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK737290T000004\r\n\r\n"; log(f_SIP_decode(cl_msg_34, true)); const charstring cl_msg_35 := "BYE sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nMax-Forwards: 68\r\nVia: SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7i1gt1uq3sq6uy12cuy99xwvnw2\r\nTo: ;tag=6622331\r\nFrom: ;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nCall-ID: 2427729377-582400364\r\nCSeq: 2 BYE\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_35, true)); const charstring cl_msg_36 := "SIP/2.0 200 OK\r\nCall-ID:2427729377-582400364\r\nContent-Length:0\r\nCSeq:2 BYE\r\nFrom:;tag=h7g4Esbg_p65541t1280237689m382027c32723312s1_2427729436-716250058\r\nTo:;tag=6622331\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7i1gt1uq3sq6uy12cuy99xwvnw2\r\n\r\n"; log(f_SIP_decode(cl_msg_36, true)); const charstring cl_msg_37 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK737290T000004\r\nTo: ;tag=h7g4Esbg_p65541t1280237689m312172c32726249s1_2427656882-1552982462\r\nFrom: ;tag=1685251\r\nCall-ID: TTCN3339453000001@10.251.64.1\r\nCSeq: 2128830185 BYE\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_37, true)); const charstring cl_msg_38 := "INVITE sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3896530000002@10.251.64.1\r\nContact:\r\nContent-Length:148\r\nContent-Type:application/sdp\r\nCSeq:1893517227 INVITE\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=4647382\r\nMax-Forwards:70\r\nRequire:100rel\r\nTo:\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5404040T000005\r\n\r\nv=0\r\no=titansim_user_7460903 0 0 IN IP4 10.252.128.1\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.1\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_38, true)); const charstring cl_msg_39 := "INVITE sip:titansim_user_7465905@10.251.64.2:15010;transport=udp SIP/2.0\r\nMax-Forwards: 68\r\nVia: SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk\r\nTo: \r\nFrom: ;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nCall-ID: 2439738664-681284072\r\nCSeq: 1 INVITE\r\nContact: ;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nRecord-Route: \r\nAccept-Contact: *;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nMin-Se: 900\r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nRequire: 100rel\r\nSession-Expires: 1800\r\nSupported: timer\r\nContent-Type: application/sdp\r\nContent-Length: 145\r\nSession-ID: e930fd34d838dc3cc2409a279e2a972d\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\nv=0\r\no=- 1879944689 2439738600 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1344 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_39, true)); const charstring cl_msg_40 := "SIP/2.0 100 Trying\r\nCall-ID:2439738664-681284072\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nRecord-Route:\r\nTo:;tag=410652\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk\r\n\r\n"; log(f_SIP_decode(cl_msg_40, true)); const charstring cl_msg_41 := "SIP/2.0 180 Ringing\r\nCall-ID:2439738664-681284072\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:987069172\r\nTo:;tag=410652\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk\r\n\r\n"; log(f_SIP_decode(cl_msg_41, true)); const charstring cl_msg_42 := "SIP/2.0 180 Ringing\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5404040T000005\r\nTo: ;tag=h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514\r\nFrom: ;tag=4647382\r\nCall-ID: TTCN3896530000002@10.251.64.1\r\nCSeq: 1893517227 INVITE\r\nContact: \r\nRecord-Route: \r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nRequire: 100rel\r\nRSeq: 2\r\nSupported: timer\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_42, true)); const charstring cl_msg_43 := "SIP/2.0 180 Ringing\r\nCall-ID:2439738664-681284072\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:987069172\r\nTo:;tag=410652\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk\r\n\r\n"; log(f_SIP_decode(cl_msg_43, true)); const charstring cl_msg_44 := "SIP/2.0 180 Ringing\r\nCall-ID:2439738664-681284072\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:987069172\r\nTo:;tag=410652\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk\r\n\r\n"; log(f_SIP_decode(cl_msg_44, true)); const charstring cl_msg_45 := "SIP/2.0 180 Ringing\r\nCall-ID:2439738664-681284072\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:987069172\r\nTo:;tag=410652\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk\r\n\r\n"; log(f_SIP_decode(cl_msg_45, true)); const charstring cl_msg_46 := "REGISTER sip:tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3271519000000@10.251.64.1\r\nContact:;expires=3600\r\nContent-Length:0\r\nCSeq:938661026 REGISTER\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=557500\r\nMax-Forwards:70\r\nTo:sip:titansim_user_7465903@tcj.ics.se\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK8289992T000006\r\n\r\n"; log(f_SIP_decode(cl_msg_46, true)); const charstring cl_msg_47 := "REGISTER sip:tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3538753000000@10.251.64.2\r\nContact:;expires=3600\r\nContent-Length:0\r\nCSeq:1780030355 REGISTER\r\nFrom:sip:titansim_user_7465905@tcj.ics.se;tag=1790110\r\nMax-Forwards:70\r\nTo:sip:titansim_user_7465905@tcj.ics.se\r\nVia:SIP/2.0/UDP 10.251.64.2:15010;branch=z9hG4bK6555023T000001\r\n\r\n"; log(f_SIP_decode(cl_msg_47, true)); const charstring cl_msg_48 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK8289992T000006\r\nTo: ;tag=h7g4Esbg_68fe6996045baee90972085ff4fb566\r\nFrom: ;tag=557500\r\nCall-ID: TTCN3271519000000@10.251.64.1\r\nCSeq: 938661026 REGISTER\r\nContact: ;expires=1890\r\nP-Associated-Uri: \r\nP-Associated-Uri: \r\nContent-Length: 0\r\n\r\n"; log(f_SIP_decode(cl_msg_48, true)); const charstring cl_msg_49 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.2:15010;branch=z9hG4bK6555023T000001\r\nTo: ;tag=h7g4Esbg_07d2a3b0046f15060972085ff5c9ddb\r\nFrom: ;tag=1790110\r\nCall-ID: TTCN3538753000000@10.251.64.2\r\nCSeq: 1780030355 REGISTER\r\nContact: ;expires=1890\r\nP-Associated-Uri: \r\nP-Associated-Uri: \r\nContent-Length: 0\r\n\r\n"; log(f_SIP_decode(cl_msg_49, true)); const charstring cl_msg_50 := "SIP/2.0 180 Ringing\r\nCall-ID:2439738664-681284072\r\nContact:\r\nContent-Length:0\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nRecord-Route:\r\nRequire:100rel\r\nRSeq:987069172\r\nTo:;tag=410652\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk\r\n\r\n"; log(f_SIP_decode(cl_msg_50, true)); const charstring cl_msg_51 := "SIP/2.0 200 OK\r\nCall-ID:2439738664-681284072\r\nContact:sip:titansim_user_7465905@tcj.ics.se\r\nContent-Length:148\r\nContent-Type:application/sdp\r\nCSeq:1 INVITE\r\nFrom:;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nRecord-Route:\r\nTo:;tag=410652\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7ikgc6p4o9mlv1oseurkrip3yrk\r\n\r\nv=0\r\no=titansim_user_7460905 0 0 IN IP4 10.252.128.2\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.2\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_51, true)); const charstring cl_msg_52 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5404040T000005\r\nTo: ;tag=h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514\r\nFrom: ;tag=4647382\r\nCall-ID: TTCN3896530000002@10.251.64.1\r\nCSeq: 1893517227 INVITE\r\nContact: ;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nRecord-Route: \r\nP-Asserted-Identity: \r\nP-Asserted-Identity: \r\nSession-Expires: 1800;refresher=uas\r\nSupported: timer\r\nContent-Type: application/sdp\r\nContent-Length: 145\r\nSession-ID: e930fd34d838dc3cc2409a279e2a972d\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\nv=0\r\no=- 1681524988 2449776927 IN IP4 10.80.36.132\r\ns=-\r\nt=0 0\r\nm=audio 1342 RTP/AVP 0\r\nc=IN IP4 10.80.38.182\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n"; log(f_SIP_decode(cl_msg_52, true)); const charstring cl_msg_53 := "ACK sip:sgc_c@10.80.36.132;transport=udp SIP/2.0\r\nCall-ID:TTCN3896530000002@10.251.64.1\r\nContent-Length:0\r\nCSeq:1893517227 ACK\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=4647382\r\nMax-Forwards:70\r\nRoute:\r\nTo:;tag=h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK6963539T000005\r\n\r\n"; log(f_SIP_decode(cl_msg_53, true)); const charstring cl_msg_54 := "ACK sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nMax-Forwards: 68\r\nVia: SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7idc3h5wd4vfglptoetj3l7rw8r\r\nTo: ;tag=410652\r\nFrom: ;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nCall-ID: 2439738664-681284072\r\nCSeq: 1 ACK\r\nContact: ;+g.3gpp.icsi-ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel"";+g.3gpp.icsi_ref=""urn%3Aurn-xxx%3A3gpp-service.ims.icsi.mmtel""\r\nContent-Length: 0\r\n\r\n"; log(f_SIP_decode(cl_msg_54, true)); const charstring cl_msg_55 := "BYE sip:sgc_c@10.80.36.132;transport=udp SIP/2.0\r\nCall-ID:TTCN3896530000002@10.251.64.1\r\nContent-Length:0\r\nCSeq:1893517228 BYE\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=4647382\r\nMax-Forwards:70\r\nRoute:\r\nTo:;tag=h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK7520932T000007\r\n\r\n"; log(f_SIP_decode(cl_msg_55, true)); const charstring cl_msg_56 := "BYE sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nMax-Forwards: 68\r\nVia: SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7i56m2bxzhfvrt4ttlx9fh3s7ul\r\nTo: ;tag=410652\r\nFrom: ;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nCall-ID: 2439738664-681284072\r\nCSeq: 2 BYE\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_56, true)); const charstring cl_msg_57 := "SIP/2.0 200 OK\r\nCall-ID:2439738664-681284072\r\nContent-Length:0\r\nCSeq:2 BYE\r\nFrom:;tag=h7g4Esbg_p65541t1280237701m382054c32727387s1_2439738718-910196390\r\nTo:;tag=410652\r\nVia:SIP/2.0/UDP 10.80.36.132:5060;branch=z9hG4bKg3Zqkv7i56m2bxzhfvrt4ttlx9fh3s7ul\r\n\r\n"; log(f_SIP_decode(cl_msg_57, true)); const charstring cl_msg_58 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK7520932T000007\r\nTo: ;tag=h7g4Esbg_p65541t1280237701m314673c32723211s1_2439659167-1910263514\r\nFrom: ;tag=4647382\r\nCall-ID: TTCN3896530000002@10.251.64.1\r\nCSeq: 1893517228 BYE\r\nContent-Length: 0\r\nAllow: REGISTER, REFER, NOTIFY, SUBSCRIBE, UPDATE, PRACK, INVITE, ACK, OPTIONS, CANCEL, BYE\r\n\r\n"; log(f_SIP_decode(cl_msg_58, true)); const charstring cl_msg_59 := "REGISTER sip:tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3538753000000@10.251.64.2\r\nContact:*\r\nContent-Length:0\r\nCSeq:1780030356 REGISTER\r\nExpires:0\r\nFrom:sip:titansim_user_7465905@tcj.ics.se;tag=2740600\r\nMax-Forwards:70\r\nTo:sip:titansim_user_7465905@tcj.ics.se\r\nVia:SIP/2.0/UDP 10.251.64.2:15010;branch=z9hG4bK9441341T000002\r\n\r\n"; log(f_SIP_decode(cl_msg_59, true)); const charstring cl_msg_60 := "REGISTER sip:tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3271519000000@10.251.64.1\r\nContact:*\r\nContent-Length:0\r\nCSeq:938661027 REGISTER\r\nExpires:0\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=4240450\r\nMax-Forwards:70\r\nTo:sip:titansim_user_7465903@tcj.ics.se\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK1330283T000008\r\n\r\n"; log(f_SIP_decode(cl_msg_60, true)); const charstring cl_msg_61 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.2:15010;branch=z9hG4bK9441341T000002\r\nTo: ;tag=h7g4Esbg_07d2a3b0046e9878097208613d50a22\r\nFrom: ;tag=2740600\r\nCall-ID: TTCN3538753000000@10.251.64.2\r\nCSeq: 1780030356 REGISTER\r\nContact: ;expires=0\r\nContent-Length: 0\r\n\r\n"; log(f_SIP_decode(cl_msg_61, true)); const charstring cl_msg_62 := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK1330283T000008\r\nTo: ;tag=h7g4Esbg_68fe6996045be032097208613d03b0f\r\nFrom: ;tag=4240450\r\nCall-ID: TTCN3271519000000@10.251.64.1\r\nCSeq: 938661027 REGISTER\r\nContact: ;expires=0\r\nContent-Length: 0\r\n\r\n"; log(f_SIP_decode(cl_msg_62, true)); const charstring cl_msg_63 := "INVITE sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3339453000001@10.251.64.1\r\nContact:\r\nContent-Length:148\r\nContent-Type:application/sdp\r\nCSeq:2128830184 INVITE\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=1685251\r\nMax-Forwards:70\r\nP-Asserted-Service: urn:urn-7:3gpp-service.exampletelephony.version1,urn:urn-7:3gpp-service.exampletelephony.version1B\r\nRequire:100rel,3gpp-service.exampletelephony.version1B\r\nTo:\r\nP-Preferred-Service: urn:urn-7:3gpp-service.exampletelephony.version2,urn:urn-7:3gpp-service.exampletelephony.version2B\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5758470T000003\r\n\r\nv=0\r\no=titansim_user_7460903 0 0 IN IP4 10.252.128.1\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.1\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n\r\n"; log(f_SIP_decode(cl_msg_63, true)); const charstring cl_msg_64 := "INVITE sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3339453000001@10.251.64.1\r\nContact:\r\nContent-Length:148\r\nContent-Type:application/sdp\r\nCSeq:2128830184 INVITE\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=1685251\r\nMax-Forwards:70\r\nX-AUT: fd01fc06\r\nX-Carrier-Info: 02fb05fe03000560\r\nX-CHGDelay: fe\r\nP-Asserted-Service: urn:urn-7:3gpp-service.exampletelephony.version1,urn:urn-7:3gpp-service.exampletelephony.version1B\r\nRequire:100rel,3gpp-service.exampletelephony.version1B\r\nTo:\r\nP-Preferred-Service: urn:urn-7:3gpp-service.exampletelephony.version2,urn:urn-7:3gpp-service.exampletelephony.version2B\r\nP-Area-Info: ca=32000;area-info=areainfo1;area-id=areaid1;area-type=ma\r\nX-CHGInfo:fefc7d0e3132333435363738393031323334;0123456789abcdef\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5758470T000003\r\n\r\nv=0\r\no=titansim_user_7460903 0 0 IN IP4 10.252.128.1\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.1\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n\r\n"; log(f_SIP_decode(cl_msg_64, true)); setverdict(pass); } testcase TC_SIP2_CM_EGRZKIS() runs on SIP_CT{ var charstring vl_char := "From:<" & "sip:Cat11Domain1@bt.com" & ">\r\n\r\n"; var PDU_SIP_Fragment vl_frag; log("### FW64> vl_char just before decode:", vl_char); vl_frag := f_SIP_decode_fragment(vl_char); log(vl_frag); vl_char := "From:<" & "tel:+8111123456789" & ">\r\n\r\n"; log("### FW64> vl_char just before decode:", vl_char); vl_frag := f_SIP_decode_fragment(vl_char); log(vl_frag); setverdict(pass); } testcase TC_WARNING() runs on SIP_CT{ var charstring vl_char := "SIP/2.0 480 Temporarily Unavailable\r\nVia: SIP/2.0/TCP [2001:1b70:8294:1481::4]:5060;branch=z9hG4bK236275105\r\nRecord-Route: \r\nFrom: sip:A-TC_3PTY_ERNA0060@ericsson.com;tag=1141676666\r\nTo: sip:3ptyconference@3ptyfactory.operator.net;tag=p65543t1299948099m270268c751s1_3232699886-736538816\r\nCall-ID: 123774626\r\nCSeq: 1 INVITE\r\nSupported: timer\r\nContact: sip:p65543t1299948099m270268c751s1@[2001:1b70:8294:1420::6]:5082\r\nWarning: 399 [2001:1b70:8294:1420::6]:5082 \"Temporarily Unavailable\"\r\nServer: Ericsson MTAS - CXP9011263/5 R6D\r\nContent-Length: 0\r\n\r\n" var PDU_SIP vl_pdu; log("### FW64> vl_char just before decode:", vl_char); vl_pdu := f_SIP_decode(vl_char); log(vl_pdu); if(ischosen(vl_pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } testcase TC_HQ40431() runs on SIP_CT{ var charstring ch:="INVITE sip:+12345@SIP.EDD.AACHEN.DE;user=phone SIP/2.0\r\nSession-ID:1234567890qwertyuiopasdfghjklzxc\r\nMax-Forwards: 70\r\nTo:sip:+12345@SIP.EDD.AACHEN.DE;user=phone\r\nFrom:sip:+33221120@SIP.ZAGREB.HR;user=phone;tag=1295741737\r\nContent-Type: application/sdp\r\nMIME-Version: 1.0\r\nCSeq: 1 INVITE\r\nCall-ID: XA007030315200809@SIP.ZAGREB.HR\r\nVia:SIP/2.0/UDP SIP.ZAGREB.HR;branch=z9hG4bk542740812\r\nContent-Length: 236\r\nP-DCS-Redirect: \"sip:+12345@SIP.EDD.AACHEN.DE;user=phone;valami=\"akarmi\"\";redirector-uri=\"ip:+12345@SIP.EDD.AACHEN.DE;user=phone\" ;count = 11\r\n\r\nv=0\r\no=- 4686582 4686582 IN IP4 0.0.0.0\r\ns=-\r\na=sendrecv\r\nt=0 0\r\nm=audio 0 RTP/AVP 97 8\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:97 AMR/8000\r\na=fmtp:97 mode-set=0,2,4,7mode-change-period=2mode-change-neighbor=1\r\na=rtpmap:8 PCMA/8000\r\na=maxptime:40\r\n" var PDU_SIP pdu; var octetstring v_oct; log(ch); pdu:=f_SIP_decode(ch); log(pdu); pdu.request.payload.payloadvalue :='02ff41020000'O; pdu.request.messageBody := omit; log(pdu) v_oct := f_SIP_encode_binary(pdu); if(substr(v_oct,lengthof(v_oct)-6, 6) == '02ff41020000'O ){ setverdict(pass); } else { setverdict(fail); } } testcase TC_CR_TR00019868() runs on SIP_CT{ var charstring ch:="INVITE sip:titansim_user_7465905@tcj.ics.se SIP/2.0\r\nCall-ID:TTCN3339453000001@10.251.64.1\r\nContact:\r\nContent-Length:148\r\nContent-Type:application/sdp\r\nCSeq:2128830184 INVITE\r\nFrom:sip:titansim_user_7465903@tcj.ics.se;tag=1685251\r\nMax-Forwards:70\r\nX-AUT: fd01fc06\r\nX-FCI: AAAA\r\nX-Carrier-Info: 02fb05fe03000560\r\nX-CHGDelay: fe\r\nP-Asserted-Service: urn:urn-7:3gpp-service.exampletelephony.version1,urn:urn-7:3gpp-service.exampletelephony.version1B\r\nRequire:100rel,3gpp-service.exampletelephony.version1B\r\nTo:\r\nP-Preferred-Service: urn:urn-7:3gpp-service.exampletelephony.version2,urn:urn-7:3gpp-service.exampletelephony.version2B\r\nP-Area-Info: ca=32000;area-info=areainfo1;area-id=areaid1;area-type=ma\r\nX-CHGInfo:fefc7d0e3132333435363738393031323334;0123456789abcdef\r\nVia:SIP/2.0/UDP 10.251.64.1:15010;branch=z9hG4bK5758470T000003\r\n\r\nv=0\r\no=titansim_user_7460903 0 0 IN IP4 10.252.128.1\r\ns=-\r\nt=0 0\r\nm=audio 15004 RTP/AVP 0\r\nc=IN IP4 10.252.128.1\r\na=rtpmap:0 PCMU/8000\r\na=sendrecv\r\n\r\n"; var PDU_SIP pdu; var charstring v_chr; log("###### charstring:") log(ch); pdu:=f_SIP_decode(ch); log("###### PDU:") log(pdu); if(pdu.request.msgHeader.x_FCI.x_FCI_Value == 'AAAA'H){ setverdict(pass); } else { setverdict(fail); } v_chr := f_SIP_encode(pdu); log("###### encoded PDU:") log(v_chr); pdu:=f_SIP_decode(v_chr); if(pdu.request.msgHeader.x_FCI.x_FCI_Value == 'AAAA'H){ setverdict(pass); } else { setverdict(fail); } } testcase TC_PLANI() runs on SIP_CT{ var charstring vl_char := "SIP/2.0 480 Temporarily Unavailable\r\nVia: SIP/2.0/TCP [2001:1b70:8294:1481::4]:5060;branch=z9hG4bK236275105\r\nRecord-Route: \r\nFrom: sip:A-TC_3PTY_ERNA0060@ericsson.com;tag=1141676666\r\nTo: sip:3ptyconference@3ptyfactory.operator.net;tag=p65543t1299948099m270268c751s1_3232699886-736538816\r\nCall-ID: 123774626\r\nCSeq: 1 INVITE\r\nSupported: timer\r\nContact: sip:p65543t1299948099m270268c751s1@[2001:1b70:8294:1420::6]:5082\r\nP-Last-Access-Network-Info: 3GPP-UTRAN-TDD; utran-cell-id-3gpp=310260a1b32704bcf; \"1996-12-19T16%3A39%3A57-08%3A00\" ; 1996-12-19T15%3A39%3A27%2E20-08%3A00 \r\nWarning: 399 [2001:1b70:8294:1420::6]:5082 \"Temporarily Unavailable\"\r\nServer: Ericsson MTAS - CXP9011263/5 R6D\r\nContent-Length: 0\r\n\r\n" var PDU_SIP vl_pdu; log("### FW64> vl_char just before decode:", vl_char); vl_pdu := f_SIP_decode(vl_char); log(vl_pdu); if(ischosen(vl_pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } testcase TC_I() runs on SIP_CT{ var charstring vl_char := "SIP/2.0 200 OK\r\nVia: SIP/2.0/UDP 10.200.1.1:10000;branch=z9hG4bK2518265T000000\r\nTo: ;tag=h7g4Esbg_4183800\r\nFrom: ;tag=8651760\r\nCall-ID: TTCN3_6864_0_0@10.200.1.1\r\nCSeq: 798116647 REGISTER\r\nContact: ;expires=180;+sip.instance=\"\";+g.3gpp.accesstype=\"cellular\"\r\nP-Associated-Uri: \r\nP-Associated-Uri: \r\nService-Route: \r\nContent-Length: 0\r\nFeature-Caps: *;+g.3gpp.atcf=\"\"\r\n\r\n" var PDU_SIP vl_pdu; log("### FW64> vl_char just before decode:", vl_char); vl_pdu := f_SIP_decode(vl_char); log(vl_pdu); if(ischosen(vl_pdu.raw)){ setverdict(fail); } else { setverdict(pass); } } control { execute(MakeCall()); execute(fv_teszt()); execute(encdec_teszt()); execute(encdec_teszt_CR_TR00018886()); execute(HL63067()); execute(HN25835()); execute(encdec_teszt_CR_TR00019031()); execute(tc_SIP_Perf_Enc()); execute(tc_SIP_Perf()); execute(tc_SIP_Perf_Enc_By_MsgLen()); execute(tc_SIP_Perf_Dec_By_MsgLen()); execute(tc_decodeconstants()); execute(TC_SIP2_CM_EGRZKIS()); execute(TC_WARNING()); execute(TC_HQ40431()); execute(TC_CR_TR00019868()); execute(TC_PLANI()); } }with {extension "version R16C"}