From 50f2bfc748acb6abd4298ae634fb7bd178243a03 Mon Sep 17 00:00:00 2001 From: DanB Date: Thu, 28 Mar 2013 14:46:00 +0100 Subject: [PATCH] Adapting the code to the new fsock, some small fixups --- fsock/fsock.go | 328 ----- fsock/fsock_test.go | 150 -- fsock/test_data.txt | 3194 ------------------------------------------- 3 files changed, 3672 deletions(-) delete mode 100644 fsock/fsock.go delete mode 100644 fsock/fsock_test.go delete mode 100644 fsock/test_data.txt diff --git a/fsock/fsock.go b/fsock/fsock.go deleted file mode 100644 index 37b66ddfa..000000000 --- a/fsock/fsock.go +++ /dev/null @@ -1,328 +0,0 @@ -/* Provides freeswitch socket communication - */ -package fsock - -import ( - "bufio" - "bytes" - "errors" - "fmt" - "log/syslog" - "net" - "net/url" - "sort" - "strconv" - "strings" - "time" -) - -var fs *fSock // Used to share FS connection via package globals (singleton) - -// Connection to FreeSWITCH Socket -type fSock struct { - conn net.Conn - buffer *bufio.Reader - fsaddress, fspaswd string - eventHandlers map[string]func(string) - eventFilters map[string]string - apiChan chan string - cmdChan chan string - reconnects int - delayFunc func() int - logger *syslog.Writer -} - -// Connects to FS and starts buffering input -func New(fsaddr, fspaswd string, reconnects int, eventHandlers map[string]func(string), eventFilters map[string]string, l *syslog.Writer) error { - fs = &fSock{fsaddress: fsaddr, fspaswd: fspaswd, eventHandlers: eventHandlers, eventFilters: eventFilters, logger: l} - fs.apiChan = make(chan string) // Init apichan so we can use it to pass api replies - fs.reconnects = reconnects - fs.delayFunc = fib() - errConn := Connect(reconnects) - if errConn != nil { - return errConn - } - return nil -} - -// Extracts value of a header from anywhere in content string -func headerVal(hdrs, hdr string) string { - var hdrSIdx, hdrEIdx int - if hdrSIdx = strings.Index(hdrs, hdr); hdrSIdx == -1 { - return "" - } else if hdrEIdx = strings.Index(hdrs[hdrSIdx:], "\n"); hdrEIdx == -1 { - hdrEIdx = len(hdrs[hdrSIdx:]) - } - splt := strings.SplitN(hdrs[hdrSIdx:hdrSIdx+hdrEIdx], ": ", 2) - if len(splt) != 2 { - return "" - } - return strings.TrimSpace(strings.TrimRight(splt[1], "\n")) -} - -// FS event header values are urlencoded. Use this to decode them. On error, use original value -func urlDecode(hdrVal string) string { - if valUnescaped, errUnescaping := url.QueryUnescape(hdrVal); errUnescaping == nil { - hdrVal = valUnescaped - } - return hdrVal -} - -// Binary string search in slice -func isSliceMember(ss []string, s string) bool { - sort.Strings(ss) - if i := sort.SearchStrings(ss, s); i < len(ss) && ss[i] == s { - return true - } - return false -} - -// Convert fseventStr into fseventMap -func FSEventStrToMap(fsevstr string, headers []string) map[string]string { - fsevent := make(map[string]string) - filtered := false - if len(headers) != 0 { - filtered = true - } - for _, strLn := range strings.Split(fsevstr, "\n") { - if hdrVal := strings.SplitN(strLn, ": ", 2); len(hdrVal) == 2 { - if filtered && isSliceMember(headers, hdrVal[0]) { - continue // Loop again since we only work on filtered fields - } - fsevent[hdrVal[0]] = urlDecode(strings.TrimSpace(strings.TrimRight(hdrVal[1], "\n"))) - } - } - return fsevent -} - -// Reads headers until delimiter reached -func readHeaders() (s string, err error) { - bytesRead := make([]byte, 0) - var readLine []byte - for { - readLine, err = fs.buffer.ReadBytes('\n') - if err != nil { - return - } - // No Error, add received to localread buffer - if len(bytes.TrimSpace(readLine)) == 0 { - break - } - bytesRead = append(bytesRead, readLine...) - } - return string(bytesRead), nil -} - -// Reads the body from buffer, ln is given by content-length of headers -func readBody(ln int) (string, error) { - bytesRead := make([]byte, ln) - for i := 0; i < ln; i++ { - if readByte, err := fs.buffer.ReadByte(); err != nil { - return "", err - } else { // No Error, add received to localread buffer - bytesRead[i] = readByte // Add received line to the local read buffer - } - } - return string(bytesRead), nil -} - -// Event is made out of headers and body (if present) -func readEvent() (string, string, error) { - var hdrs, body string - var cl int - var err error - - if hdrs, err = readHeaders(); err != nil { - return "", "", err - } - if !strings.Contains(hdrs, "Content-Length") { //No body - return hdrs, "", nil - } - clStr := headerVal(hdrs, "Content-Length") - if cl, err = strconv.Atoi(clStr); err != nil { - return "", "", errors.New("Cannot extract content length") - } - if body, err = readBody(cl); err != nil { - return "", "", err - } - return hdrs, body, nil -} - -// Checks if socket connected. Can be extended with pings -func Connected() bool { - if fs.conn == nil { - return false - } - return true -} - -// Disconnects from socket -func Disconnect() (err error) { - if fs.conn != nil { - err = fs.conn.Close() - } - return -} - -// Auth to FS -func Auth() error { - authCmd := fmt.Sprintf("auth %s\n\n", fs.fspaswd) - fmt.Fprint(fs.conn, authCmd) - if rply, err := readHeaders(); err != nil || !strings.Contains(rply, "Reply-Text: +OK accepted") { - fmt.Println("Got reply to auth:", rply) - return errors.New("auth error") - } - return nil -} - -// Subscribe to events -func EventsPlain(events []string) error { - if len(events) == 0 { - return nil - } - eventsCmd := "event plain" - for _, ev := range events { - if ev == "ALL" { - eventsCmd = "event plain all" - break - } - eventsCmd += " " + ev - } - eventsCmd += "\n\n" - fmt.Fprint(fs.conn, eventsCmd) // Send command here - if rply, err := readHeaders(); err != nil || !strings.Contains(rply, "Reply-Text: +OK") { - return errors.New("event error") - } - return nil -} - -// Enable filters -func filterEvents(filters map[string]string) error { - if len(filters) == 0 { //Nothing to filter - return nil - } - cmd := "filter" - for hdr, val := range filters { - cmd += " " + hdr + " " + val - } - cmd += "\n\n" - fmt.Fprint(fs.conn, cmd) - if rply, err := readHeaders(); err != nil || !strings.Contains(rply, "Reply-Text: +OK") { - return errors.New("filter error") - } - return nil -} - -// Connect or reconnect -func Connect(reconnects int) error { - if Connected() { - Disconnect() - } - var conErr error - for i := 0; i < reconnects; i++ { - fs.conn, conErr = net.Dial("tcp", fs.fsaddress) - if conErr == nil { - // Connected, init buffer, auth and subscribe to desired events and filters - fs.buffer = bufio.NewReaderSize(fs.conn, 8192) // reinit buffer - if authChg, err := readHeaders(); err != nil || !strings.Contains(authChg, "auth/request") { - return errors.New("No auth challenge received") - } else if errAuth := Auth(); errAuth != nil { // Auth did not succeed - return errAuth - } - // Subscribe to events handled by event handlers - handledEvs := make([]string, len(fs.eventHandlers)) - j := 0 - for k := range fs.eventHandlers { - handledEvs[j] = k - j++ - } - if subscribeErr := EventsPlain(handledEvs); subscribeErr != nil { - return subscribeErr - } - if filterErr := filterEvents(fs.eventFilters); filterErr != nil { - return filterErr - } - return nil - } - time.Sleep(time.Duration(fs.delayFunc()) * time.Second) - fs.logger.Warning("FreeSWITCH reconnect!") - } - return conErr -} - -// Send API command -func SendApiCmd(cmdStr string) error { - if !Connected() { - return errors.New("Not connected to FS") - } - cmd := fmt.Sprintf("api %s\n\n", cmdStr) - fmt.Fprint(fs.conn, cmd) - resEvent := <-fs.apiChan - if strings.Contains(resEvent, "-ERR") { - return errors.New("Command failed") - } - return nil -} - -// SendMessage command -func SendMsgCmd(uuid string, cmdargs map[string]string) error { - if len(cmdargs) == 0 { - return errors.New("Need command arguments") - } - if !Connected() { - return errors.New("Not connected to FS") - } - argStr := "" - for k, v := range cmdargs { - argStr += fmt.Sprintf("%s:%s\n", k, v) - } - fmt.Fprint(fs.conn, fmt.Sprintf("sendmsg %s\n%s\n", uuid, argStr)) - replyTxt := <-fs.cmdChan - if strings.HasPrefix(replyTxt, "-ERR") { - return fmt.Errorf("SendMessage: %s", replyTxt) - } - return nil -} - -// Reads events from socket -func ReadEvents() { - // Read events from buffer, firing them up further - for { - hdr, body, err := readEvent() - if err != nil { - fs.logger.Warning("FreeSWITCH connection broken: attemting reconnect") - connErr := Connect(fs.reconnects) - if connErr != nil { - return - } - continue // Connection reset - } - if strings.Contains(hdr, "api/response") { - fs.apiChan <- hdr + body - } else if strings.Contains(hdr, "command/reply") { - fs.cmdChan <- headerVal(hdr, "Reply-Text") - } - if body != "" { // We got a body, could be event, try dispatching it - dispatchEvent(body) - } - } - - return -} - -// Dispatch events to handlers in async mode -func dispatchEvent(event string) { - eventName := headerVal(event, "Event-Name") - if handlerFunc, hasHandler := fs.eventHandlers[eventName]; hasHandler { - go handlerFunc(event) - } -} - -// successive Fibonacci numbers. -func fib() func() int { - a, b := 0, 1 - return func() int { - a, b = b, a+b - return a - } -} diff --git a/fsock/fsock_test.go b/fsock/fsock_test.go deleted file mode 100644 index 68b53f38e..000000000 --- a/fsock/fsock_test.go +++ /dev/null @@ -1,150 +0,0 @@ -package fsock - -import ( - "bufio" - "io/ioutil" - "os" - "testing" - "time" -) - -const ( - HEADER = `Content-Length: 564 -Content-Type: text/event-plain - -` - BODY = `Event-Name: RE_SCHEDULE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A38 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A38%20GMT -Event-Date-Timestamp: 1349437298012866 -Event-Calling-File: switch_scheduler.c -Event-Calling-Function: switch_scheduler_execute -Event-Calling-Line-Number: 65 -Event-Sequence: 34263 -Task-ID: 2 -Task-Desc: heartbeat -Task-Group: core -Task-Runtime: 1349437318 - -extra data -` -) - -func TestHeaders(t *testing.T) { - r, w, err := os.Pipe() - if err != nil { - t.Error("Error creating pype!") - } - fs = &fSock{} - fs.buffer = bufio.NewReader(r) - w.Write([]byte(HEADER)) - h, err := readHeaders() - if err != nil || h != "Content-Length: 564\nContent-Type: text/event-plain\n" { - t.Error("Error parsing headers: ", h, err) - } -} - -func TestEvent(t *testing.T) { - r, w, err := os.Pipe() - if err != nil { - t.Error("Error creating pype!") - } - fs = &fSock{} - fs.buffer = bufio.NewReader(r) - w.Write([]byte(HEADER + BODY)) - h, b, err := readEvent() - if err != nil || h != HEADER[:len(HEADER)-1] || len(b) != 564 { - t.Error("Error parsing event: ", h, b, len(b)) - } -} - -func TestHeaderValMiddle(t *testing.T) { - h := headerVal(BODY, "Event-Date-GMT") - if h != "Fri,%2005%20Oct%202012%2011%3A41%3A38%20GMT" { - t.Error("Header val error: ", h) - } -} - -func TestHeaderValStart(t *testing.T) { - h := headerVal(BODY, "Event-Name") - if h != "RE_SCHEDULE" { - t.Error("Header val error: ", h) - } -} - -func TestHeaderValEnd(t *testing.T) { - h := headerVal(BODY, "Task-Runtime") - if h != "1349437318" { - t.Error("Header val error: ", h) - } -} - -func TestEventToMapUnfiltered(t *testing.T) { - fields := FSEventStrToMap(BODY, nil) - if fields["Event-Name"] != "RE_SCHEDULE" { - t.Error("Event not parsed correctly: ", fields) - } - if len(fields) != 17 { - t.Error("Incorrect number of event fields: ", len(fields)) - } -} - -func TestEventToMapFiltered(t *testing.T) { - fields := FSEventStrToMap(BODY, []string{"Event-Name", "Task-Group", "Event-Date-GMT"}) - if fields["Event-Date-Local"] != "2012-10-05 13:41:38" { - t.Error("Event not parsed correctly: ", fields) - } - if len(fields) != 14 { - t.Error("Incorrect number of event fields: ", len(fields)) - } -} - -func TestReadEvents(t *testing.T) { - data, err := ioutil.ReadFile("test_data.txt") - if err != nil { - t.Error("Error reading test data file!") - } - r, w, err := os.Pipe() - if err != nil { - t.Error("Error creating pype!") - } - fs = &fSock{} - fs.buffer = bufio.NewReader(r) - var events int32 - fs.eventHandlers = map[string]func(string){ - "HEARTBEAT": func(string) { events++ }, - "RE_SCHEDULE": func(string) { events++ }, - "CHANNEL_STATE": func(string) { events++ }, - "CODEC": func(string) { events++ }, - "CHANNEL_CREATE": func(string) { events++ }, - "CHANNEL_CALLSTATE": func(string) { events++ }, - "API": func(string) { events++ }, - "CHANNEL_EXECUTE": func(string) { events++ }, - "CHANNEL_EXECUTE_COMPLETE": func(string) { events++ }, - "CHANNEL_PARK": func(string) { events++ }, - "CHANNEL_HANGUP": func(string) { events++ }, - "CHANNEL_HANGUP_COMPLETE": func(string) { events++ }, - "CHANNEL_UNPARK": func(string) { events++ }, - "CHANNEL_DESTROY": func(string) { events++ }, - } - go ReadEvents() - w.Write(data) - time.Sleep(50 * time.Millisecond) - if events != 45 { - t.Error("Error reading events: ", events) - } -} - -/*********************** Benchmarks ************************/ - -func BenchmarkHeaderVal(b *testing.B) { - for i := 0; i < b.N; i++ { - headerVal(HEADER, "Content-Length") - headerVal(BODY, "Event-Date-Loca") - } -} diff --git a/fsock/test_data.txt b/fsock/test_data.txt deleted file mode 100644 index 63ab7c038..000000000 --- a/fsock/test_data.txt +++ /dev/null @@ -1,3194 +0,0 @@ - -Content-Length: 720 -Content-Type: text/event-plain - -Event-Name: HEARTBEAT -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A38 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A38%20GMT -Event-Date-Timestamp: 1349437298012866 -Event-Calling-File: switch_core.c -Event-Calling-Function: send_heartbeat -Event-Calling-Line-Number: 68 -Event-Sequence: 34262 -Event-Info: System%20Ready -Up-Time: 0%20years,%203%20days,%204%20hours,%202%20minutes,%2019%20seconds,%20912%20milliseconds,%20410%20microseconds -Session-Count: 0 -Max-Sessions: 1000 -Session-Per-Sec: 30 -Session-Since-Startup: 0 -Idle-CPU: 99.000000 - -Content-Length: 564 -Content-Type: text/event-plain - -Event-Name: RE_SCHEDULE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A38 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A38%20GMT -Event-Date-Timestamp: 1349437298012866 -Event-Calling-File: switch_scheduler.c -Event-Calling-Function: switch_scheduler_execute -Event-Calling-Line-Number: 65 -Event-Sequence: 34263 -Task-ID: 2 -Task-Desc: heartbeat -Task-Group: core -Task-Runtime: 1349437318 - -Content-Length: 789 -Content-Type: text/event-plain - -Event-Name: CHANNEL_STATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_running_state -Event-Calling-Line-Number: 1931 -Event-Sequence: 34264 -Channel-State: CS_NEW -Channel-Call-State: DOWN -Channel-State-Number: 0 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Answer-State: ringing - -Content-Length: 1917 -Content-Type: text/event-plain - -Event-Name: CODEC -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_core_codec.c -Event-Calling-Function: switch_core_session_set_real_read_codec -Event-Calling-Line-Number: 162 -Event-Sequence: 34265 -Channel-State: CS_NEW -Channel-Call-State: DOWN -Channel-State-Number: 0 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -channel-read-codec-name: PCMA -channel-read-codec-rate: 8000 -channel-read-codec-bit-rate: 64000 - -Content-Length: 1916 -Content-Type: text/event-plain - -Event-Name: CODEC -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_core_codec.c -Event-Calling-Function: switch_core_session_set_write_codec -Event-Calling-Line-Number: 432 -Event-Sequence: 34266 -Channel-State: CS_NEW -Channel-Call-State: DOWN -Channel-State-Number: 0 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-codec-bit-rate: 64000 - -Content-Length: 790 -Content-Type: text/event-plain - -Event-Name: CHANNEL_STATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_running_state -Event-Calling-Line-Number: 1931 -Event-Sequence: 34267 -Channel-State: CS_INIT -Channel-Call-State: DOWN -Channel-State-Number: 1 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Answer-State: ringing - -Content-Length: 4626 -Content-Type: text/event-plain - -Event-Name: CHANNEL_CREATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_core_state_machine.c -Event-Calling-Function: switch_core_session_run -Event-Calling-Line-Number: 426 -Event-Sequence: 34268 -Channel-State: CS_ROUTING -Channel-Call-State: DOWN -Channel-State-Number: 2 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED - -Content-Length: 1898 -Content-Type: text/event-plain - -Event-Name: CHANNEL_CALLSTATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_callstate -Event-Calling-Line-Number: 235 -Event-Sequence: 34269 -Original-Channel-Call-State: DOWN -Channel-Call-State-Number: 2 -Channel-State: CS_ROUTING -Channel-Call-State: RINGING -Channel-State-Number: 2 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false - -Content-Length: 1836 -Content-Type: text/event-plain - -Event-Name: CHANNEL_STATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_running_state -Event-Calling-Line-Number: 1931 -Event-Sequence: 34270 -Channel-State: CS_ROUTING -Channel-Call-State: RINGING -Channel-State-Number: 2 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false - -Content-Length: 507 -Content-Type: text/event-plain - -Event-Name: API -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_loadable_module.c -Event-Calling-Function: switch_api_execute -Event-Calling-Line-Number: 2248 -Event-Sequence: 34272 -API-Command: g729_used - -Content-Length: 542 -Content-Type: text/event-plain - -Event-Name: API -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_loadable_module.c -Event-Calling-Function: switch_api_execute -Event-Calling-Line-Number: 2248 -Event-Sequence: 34273 -API-Command: regex -API-Command-Argument: 0%3A0%7C8%3A%5Cd - -Content-Length: 507 -Content-Type: text/event-plain - -Event-Name: API -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306912868 -Event-Calling-File: switch_loadable_module.c -Event-Calling-Function: switch_api_execute -Event-Calling-Line-Number: 2248 -Event-Sequence: 34274 -API-Command: g729_used - -Content-Length: 542 -Content-Type: text/event-plain - -Event-Name: API -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_loadable_module.c -Event-Calling-Function: switch_api_execute -Event-Calling-Line-Number: 2248 -Event-Sequence: 34275 -API-Command: regex -API-Command-Argument: 0%3A0%7C8%3A%5Cd - -Content-Length: 4829 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2312 -Event-Sequence: 34276 -Channel-State: CS_ROUTING -Channel-Call-State: RINGING -Channel-State-Number: 2 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_current_application: set -variable_current_application_data: cgr_reqtype%3Dprepaid -Application: set -Application-Data: cgr_reqtype%3Dprepaid -Application-UUID: e7e50c20-eae3-4614-a576-c538ee326e1b - -Content-Length: 4897 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE_COMPLETE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2334 -Event-Sequence: 34277 -Channel-State: CS_ROUTING -Channel-Call-State: RINGING -Channel-State-Number: 2 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_current_application_data: cgr_reqtype%3Dprepaid -variable_current_application: set -variable_cgr_reqtype: prepaid -Application: set -Application-Data: cgr_reqtype%3Dprepaid -Application-Response: _none_ -Application-UUID: e7e50c20-eae3-4614-a576-c538ee326e1b - -Content-Length: 796 -Content-Type: text/event-plain - -Event-Name: CHANNEL_STATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_running_state -Event-Calling-Line-Number: 1931 -Event-Sequence: 34278 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Answer-State: ringing - -Content-Length: 4839 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2312 -Event-Sequence: 34279 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_current_application: set -variable_current_application_data: cgr_tor%3D1 -Application: set -Application-Data: cgr_tor%3D1 -Application-UUID: e57f5133-3c33-49e2-a3fd-8d2a6040bcca - -Content-Length: 4897 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE_COMPLETE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2334 -Event-Sequence: 34280 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_current_application_data: cgr_tor%3D1 -variable_current_application: set -variable_cgr_tor: 1 -Application: set -Application-Data: cgr_tor%3D1 -Application-Response: _none_ -Application-UUID: e57f5133-3c33-49e2-a3fd-8d2a6040bcca - -Content-Length: 4865 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2312 -Event-Sequence: 34281 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_current_application: set -variable_current_application_data: cgr_cstmid%3D1 -Application: set -Application-Data: cgr_cstmid%3D1 -Application-UUID: eb111268-ba64-437e-98ac-b7d2b7d3dfbb - -Content-Length: 4926 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE_COMPLETE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2334 -Event-Sequence: 34282 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_current_application_data: cgr_cstmid%3D1 -variable_current_application: set -variable_cgr_cstmid: 1 -Application: set -Application-Data: cgr_cstmid%3D1 -Application-Response: _none_ -Application-UUID: eb111268-ba64-437e-98ac-b7d2b7d3dfbb - -Content-Length: 4914 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2312 -Event-Sequence: 34283 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_current_application: set -variable_current_application_data: cgr_account%3D4986517174963 -Application: set -Application-Data: cgr_account%3D4986517174963 -Application-UUID: 37cf768d-f55b-485c-8e0c-3a37f42951a5 - -Content-Length: 4988 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE_COMPLETE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2334 -Event-Sequence: 34284 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_current_application_data: cgr_account%3D4986517174963 -variable_current_application: set -variable_cgr_account: 4986517174963 -Application: set -Application-Data: cgr_account%3D4986517174963 -Application-Response: _none_ -Application-UUID: 37cf768d-f55b-485c-8e0c-3a37f42951a5 - -Content-Length: 4950 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2312 -Event-Sequence: 34285 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_current_application: set -variable_current_application_data: cgr_subject%3D4986517174963 -Application: set -Application-Data: cgr_subject%3D4986517174963 -Application-UUID: 9976bd52-8fdb-4808-b7a7-86e8cc49a7d8 - -Content-Length: 5024 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE_COMPLETE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2334 -Event-Sequence: 34286 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_current_application_data: cgr_subject%3D4986517174963 -variable_current_application: set -variable_cgr_subject: 4986517174963 -Application: set -Application-Data: cgr_subject%3D4986517174963 -Application-Response: _none_ -Application-UUID: 9976bd52-8fdb-4808-b7a7-86e8cc49a7d8 - -Content-Length: 4994 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2312 -Event-Sequence: 34287 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_current_application: set -variable_current_application_data: cgr_destination%3D4986517174963 -Application: set -Application-Data: cgr_destination%3D4986517174963 -Application-UUID: a7ebead0-aa4a-4eca-81f4-e8b1bc187539 - -Content-Length: 5072 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE_COMPLETE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2334 -Event-Sequence: 34288 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_current_application_data: cgr_destination%3D4986517174963 -variable_current_application: set -variable_cgr_destination: 4986517174963 -Application: set -Application-Data: cgr_destination%3D4986517174963 -Application-Response: _none_ -Application-UUID: a7ebead0-aa4a-4eca-81f4-e8b1bc187539 - -Content-Length: 4919 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2312 -Event-Sequence: 34289 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_cgr_destination: 4986517174963 -variable_current_application: park -Application: park -Application-UUID: ebf1edee-02ed-4040-abe5-46b12cd287c5 - -Content-Length: 4824 -Content-Type: text/event-plain - -Event-Name: CHANNEL_PARK -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A46 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT -Event-Date-Timestamp: 1349437306932866 -Event-Calling-File: switch_ivr.c -Event-Calling-Function: switch_ivr_park -Event-Calling-Line-Number: 898 -Event-Sequence: 34290 -Channel-State: CS_EXECUTE -Channel-Call-State: RINGING -Channel-State-Number: 4 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: ringing -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_cgr_destination: 4986517174963 -variable_current_application: park - -Content-Length: 720 -Content-Type: text/event-plain - -Event-Name: HEARTBEAT -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A58 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A58%20GMT -Event-Date-Timestamp: 1349437318012976 -Event-Calling-File: switch_core.c -Event-Calling-Function: send_heartbeat -Event-Calling-Line-Number: 68 -Event-Sequence: 34291 -Event-Info: System%20Ready -Up-Time: 0%20years,%203%20days,%204%20hours,%202%20minutes,%2039%20seconds,%20914%20milliseconds,%20902%20microseconds -Session-Count: 1 -Max-Sessions: 1000 -Session-Per-Sec: 30 -Session-Since-Startup: 1 -Idle-CPU: 98.000000 - -Content-Length: 564 -Content-Type: text/event-plain - -Event-Name: RE_SCHEDULE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A41%3A58 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A58%20GMT -Event-Date-Timestamp: 1349437318012976 -Event-Calling-File: switch_scheduler.c -Event-Calling-Function: switch_scheduler_execute -Event-Calling-Line-Number: 65 -Event-Sequence: 34292 -Task-ID: 2 -Task-Desc: heartbeat -Task-Group: core -Task-Runtime: 1349437338 - -Content-Length: 720 -Content-Type: text/event-plain - -Event-Name: HEARTBEAT -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A18 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A18%20GMT -Event-Date-Timestamp: 1349437338012976 -Event-Calling-File: switch_core.c -Event-Calling-Function: send_heartbeat -Event-Calling-Line-Number: 68 -Event-Sequence: 34293 -Event-Info: System%20Ready -Up-Time: 0%20years,%203%20days,%204%20hours,%202%20minutes,%2059%20seconds,%20917%20milliseconds,%20150%20microseconds -Session-Count: 1 -Max-Sessions: 1000 -Session-Per-Sec: 30 -Session-Since-Startup: 1 -Idle-CPU: 98.000000 - -Content-Length: 564 -Content-Type: text/event-plain - -Event-Name: RE_SCHEDULE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A18 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A18%20GMT -Event-Date-Timestamp: 1349437338012976 -Event-Calling-File: switch_scheduler.c -Event-Calling-Function: switch_scheduler_execute -Event-Calling-Line-Number: 65 -Event-Sequence: 34294 -Task-ID: 2 -Task-Desc: heartbeat -Task-Group: core -Task-Runtime: 1349437358 - -Content-Length: 563 -Content-Type: text/event-plain - -Event-Name: RE_SCHEDULE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A18 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A18%20GMT -Event-Date-Timestamp: 1349437338012976 -Event-Calling-File: switch_scheduler.c -Event-Calling-Function: switch_scheduler_execute -Event-Calling-Line-Number: 65 -Event-Sequence: 34295 -Task-ID: 3 -Task-Desc: check_ip -Task-Group: core -Task-Runtime: 1349437398 - - -uuid_transfer Content-Length: 720 -Content-Type: text/event-plain - -Event-Name: HEARTBEAT -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A38 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A38%20GMT -Event-Date-Timestamp: 1349437358012974 -Event-Calling-File: switch_core.c -Event-Calling-Function: send_heartbeat -Event-Calling-Line-Number: 68 -Event-Sequence: 34296 -Event-Info: System%20Ready -Up-Time: 0%20years,%203%20days,%204%20hours,%203%20minutes,%2019%20seconds,%20919%20milliseconds,%20898%20microseconds -Session-Count: 1 -Max-Sessions: 1000 -Session-Per-Sec: 30 -Session-Since-Startup: 1 -Idle-CPU: 98.000000 - -Content-Length: 564 -Content-Type: text/event-plain - -Event-Name: RE_SCHEDULE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A38 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A38%20GMT -Event-Date-Timestamp: 1349437358012974 -Event-Calling-File: switch_scheduler.c -Event-Calling-Function: switch_scheduler_execute -Event-Calling-Line-Number: 65 -Event-Sequence: 34297 -Task-ID: 2 -Task-Desc: heartbeat -Task-Group: core -Task-Runtime: 1349437378 - -Content-Length: 1899 -Content-Type: text/event-plain - -Event-Name: CHANNEL_CALLSTATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_callstate -Event-Calling-Line-Number: 235 -Event-Sequence: 34298 -Original-Channel-Call-State: RINGING -Channel-Call-State-Number: 6 -Channel-State: CS_HANGUP -Channel-Call-State: HANGUP -Channel-State-Number: 10 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: hangup -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false - -Content-Length: 4982 -Content-Type: text/event-plain - -Event-Name: CHANNEL_HANGUP -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_hangup -Event-Calling-Line-Number: 2920 -Event-Sequence: 34299 -Hangup-Cause: ORIGINATOR_CANCEL -Channel-State: CS_HANGUP -Channel-Call-State: HANGUP -Channel-State-Number: 10 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: hangup -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_cgr_destination: 4986517174963 -variable_current_application: park -variable_sip_term_status: 487 -variable_proto_specific_hangup_cause: sip%3A487 -variable_sip_term_cause: 487 - -Content-Length: 4932 -Content-Type: text/event-plain - -Event-Name: CHANNEL_UNPARK -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_ivr.c -Event-Calling-Function: switch_ivr_park -Event-Calling-Line-Number: 1101 -Event-Sequence: 34300 -Channel-State: CS_HANGUP -Channel-Call-State: HANGUP -Channel-State-Number: 10 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: hangup -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_cgr_destination: 4986517174963 -variable_current_application: park -variable_sip_term_status: 487 -variable_proto_specific_hangup_cause: sip%3A487 -variable_sip_term_cause: 487 - -Content-Length: 5062 -Content-Type: text/event-plain - -Event-Name: CHANNEL_EXECUTE_COMPLETE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_exec -Event-Calling-Line-Number: 2334 -Event-Sequence: 34301 -Channel-State: CS_HANGUP -Channel-Call-State: HANGUP -Channel-State-Number: 10 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: hangup -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 0 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_cgr_destination: 4986517174963 -variable_current_application: park -variable_sip_term_status: 487 -variable_proto_specific_hangup_cause: sip%3A487 -variable_sip_term_cause: 487 -Application: park -Application-Response: _none_ -Application-UUID: ebf1edee-02ed-4040-abe5-46b12cd287c5 - -Content-Length: 794 -Content-Type: text/event-plain - -Event-Name: CHANNEL_STATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_running_state -Event-Calling-Line-Number: 1931 -Event-Sequence: 34302 -Channel-State: CS_HANGUP -Channel-Call-State: HANGUP -Channel-State-Number: 10 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Answer-State: hangup - -Content-Length: 797 -Content-Type: text/event-plain - -Event-Name: CHANNEL_STATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_running_state -Event-Calling-Line-Number: 1931 -Event-Sequence: 34303 -Channel-State: CS_REPORTING -Channel-Call-State: HANGUP -Channel-State-Number: 11 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Answer-State: hangup - -Content-Length: 6528 -Content-Type: text/event-plain - -Event-Name: CHANNEL_HANGUP_COMPLETE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_core_state_machine.c -Event-Calling-Function: switch_core_session_reporting_state -Event-Calling-Line-Number: 696 -Event-Sequence: 34304 -Hangup-Cause: ORIGINATOR_CANCEL -Channel-State: CS_REPORTING -Channel-Call-State: HANGUP -Channel-State-Number: 11 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: hangup -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 1349437362372974 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_cgr_destination: 4986517174963 -variable_current_application: park -variable_sip_term_status: 487 -variable_proto_specific_hangup_cause: sip%3A487 -variable_sip_term_cause: 487 -variable_hangup_cause: ORIGINATOR_CANCEL -variable_hangup_cause_q850: 16 -variable_digits_dialed: none -variable_start_stamp: 2012-10-05%2013%3A41%3A46 -variable_profile_start_stamp: 2012-10-05%2013%3A41%3A46 -variable_end_stamp: 2012-10-05%2013%3A42%3A42 -variable_start_epoch: 1349437306 -variable_start_uepoch: 1349437306912868 -variable_profile_start_epoch: 1349437306 -variable_profile_start_uepoch: 1349437306912868 -variable_answer_epoch: 0 -variable_answer_uepoch: 0 -variable_bridge_epoch: 0 -variable_bridge_uepoch: 0 -variable_last_hold_epoch: 0 -variable_last_hold_uepoch: 0 -variable_hold_accum_seconds: 0 -variable_hold_accum_usec: 0 -variable_hold_accum_ms: 0 -variable_resurrect_epoch: 0 -variable_resurrect_uepoch: 0 -variable_progress_epoch: 0 -variable_progress_uepoch: 0 -variable_progress_media_epoch: 0 -variable_progress_media_uepoch: 0 -variable_end_epoch: 1349437362 -variable_end_uepoch: 1349437362372974 -variable_last_app: park -variable_caller_id: %224986517174963%22%20%3C4986517174963%3E -variable_duration: 56 -variable_billsec: 0 -variable_progresssec: 0 -variable_answersec: 0 -variable_waitsec: 0 -variable_progress_mediasec: 0 -variable_flow_billsec: 0 -variable_mduration: 55460 -variable_billmsec: 0 -variable_progressmsec: 0 -variable_answermsec: 0 -variable_waitmsec: 0 -variable_progress_mediamsec: 0 -variable_flow_billmsec: 0 -variable_uduration: 55460106 -variable_billusec: 0 -variable_progressusec: 0 -variable_answerusec: 0 -variable_waitusec: 0 -variable_progress_mediausec: 0 -variable_flow_billusec: 0 - -Content-Length: 6481 -Content-Type: text/event-plain - -Event-Name: CHANNEL_DESTROY -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_core_session.c -Event-Calling-Function: switch_core_session_perform_destroy -Event-Calling-Line-Number: 1298 -Event-Sequence: 34305 -Channel-State: CS_DESTROY -Channel-Call-State: HANGUP -Channel-State-Number: 12 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: hangup -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 1349437362372974 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false -variable_direction: inbound -variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_session_id: 1 -variable_sip_local_network_addr: 127.0.0.1 -variable_sip_network_ip: 88.198.12.156 -variable_sip_network_port: 5060 -variable_sip_received_ip: 88.198.12.156 -variable_sip_received_port: 5060 -variable_sip_via_protocol: udp -variable_sip_from_user: 4986517174963 -variable_sip_from_uri: 4986517174963%40call-home.net -variable_sip_from_host: call-home.net -variable_sip_from_user_stripped: 4986517174963 -variable_sip_from_tag: c3eaa691 -variable_sofia_profile_name: B2BUA -variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E -variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6 -variable_sip_from_display: 4986517174963 -variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691 -variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E -variable_sip_req_user: 4986517174963 -variable_sip_req_uri: 4986517174963%40call-home.net -variable_sip_req_host: call-home.net -variable_sip_to_user: 4986517174963 -variable_sip_to_uri: 4986517174963%40call-home.net -variable_sip_to_host: call-home.net -variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net -variable_sip_contact_user: 4986517174963 -variable_sip_contact_port: 5060 -variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060 -variable_sip_contact_host: 87.139.12.167 -variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net -variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0 -variable_sip_user_agent: Jitsi1.0-build.3967Linux -variable_sip_via_host: 88.198.12.156 -variable_max_forwards: 69 -variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A -variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658 -variable_remote_media_ip: 10.10.10.155 -variable_remote_media_port: 5008 -variable_sip_audio_recv_pt: 8 -variable_sip_use_codec_name: PCMA -variable_sip_use_codec_rate: 8000 -variable_sip_use_codec_ptime: 20 -variable_read_codec: PCMA -variable_read_rate: 8000 -variable_write_codec: PCMA -variable_write_rate: 8000 -variable_dtmf_type: info -variable_endpoint_disposition: RECEIVED -variable_cgr_reqtype: prepaid -variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -variable_cgr_tor: 1 -variable_cgr_cstmid: 1 -variable_cgr_account: 4986517174963 -variable_cgr_subject: 4986517174963 -variable_cgr_destination: 4986517174963 -variable_current_application: park -variable_sip_term_status: 487 -variable_proto_specific_hangup_cause: sip%3A487 -variable_sip_term_cause: 487 -variable_hangup_cause: ORIGINATOR_CANCEL -variable_hangup_cause_q850: 16 -variable_digits_dialed: none -variable_start_stamp: 2012-10-05%2013%3A41%3A46 -variable_profile_start_stamp: 2012-10-05%2013%3A41%3A46 -variable_end_stamp: 2012-10-05%2013%3A42%3A42 -variable_start_epoch: 1349437306 -variable_start_uepoch: 1349437306912868 -variable_profile_start_epoch: 1349437306 -variable_profile_start_uepoch: 1349437306912868 -variable_answer_epoch: 0 -variable_answer_uepoch: 0 -variable_bridge_epoch: 0 -variable_bridge_uepoch: 0 -variable_last_hold_epoch: 0 -variable_last_hold_uepoch: 0 -variable_hold_accum_seconds: 0 -variable_hold_accum_usec: 0 -variable_hold_accum_ms: 0 -variable_resurrect_epoch: 0 -variable_resurrect_uepoch: 0 -variable_progress_epoch: 0 -variable_progress_uepoch: 0 -variable_progress_media_epoch: 0 -variable_progress_media_uepoch: 0 -variable_end_epoch: 1349437362 -variable_end_uepoch: 1349437362372974 -variable_last_app: park -variable_caller_id: %224986517174963%22%20%3C4986517174963%3E -variable_duration: 56 -variable_billsec: 0 -variable_progresssec: 0 -variable_answersec: 0 -variable_waitsec: 0 -variable_progress_mediasec: 0 -variable_flow_billsec: 0 -variable_mduration: 55460 -variable_billmsec: 0 -variable_progressmsec: 0 -variable_answermsec: 0 -variable_waitmsec: 0 -variable_progress_mediamsec: 0 -variable_flow_billmsec: 0 -variable_uduration: 55460106 -variable_billusec: 0 -variable_progressusec: 0 -variable_answerusec: 0 -variable_waitusec: 0 -variable_progress_mediausec: 0 -variable_flow_billusec: 0 - -Content-Length: 1912 -Content-Type: text/event-plain - -Event-Name: CHANNEL_CALLSTATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_callstate -Event-Calling-Line-Number: 235 -Event-Sequence: 34306 -Original-Channel-Call-State: HANGUP -Channel-Call-State-Number: 0 -Channel-State: CS_DESTROY -Channel-Call-State: DOWN -Channel-State-Number: 12 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Answer-State: hangup -Channel-Read-Codec-Name: PCMA -Channel-Read-Codec-Rate: 8000 -Channel-Read-Codec-Bit-Rate: 64000 -Channel-Write-Codec-Name: PCMA -Channel-Write-Codec-Rate: 8000 -Channel-Write-Codec-Bit-Rate: 64000 -Caller-Direction: inbound -Caller-Username: 4986517174963 -Caller-Dialplan: XML -Caller-Caller-ID-Name: 4986517174963 -Caller-Caller-ID-Number: 4986517174963 -Caller-Network-Addr: 88.198.12.156 -Caller-ANI: 4986517174963 -Caller-Destination-Number: 4986517174963 -Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Caller-Source: mod_sofia -Caller-Context: b2bua -Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Caller-Profile-Index: 1 -Caller-Profile-Created-Time: 1349437306912868 -Caller-Channel-Created-Time: 1349437306912868 -Caller-Channel-Answered-Time: 0 -Caller-Channel-Progress-Time: 0 -Caller-Channel-Progress-Media-Time: 0 -Caller-Channel-Hangup-Time: 1349437362372974 -Caller-Channel-Transfer-Time: 0 -Caller-Screen-Bit: true -Caller-Privacy-Hide-Name: false -Caller-Privacy-Hide-Number: false - -Content-Length: 793 -Content-Type: text/event-plain - -Event-Name: CHANNEL_STATE -Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d -FreeSWITCH-Hostname: h1.ip-switch.net -FreeSWITCH-Switchname: h1.ip-switch.net -FreeSWITCH-IPv4: 88.198.12.156 -FreeSWITCH-IPv6: %3A%3A1 -Event-Date-Local: 2012-10-05%2013%3A42%3A42 -Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A42%3A42%20GMT -Event-Date-Timestamp: 1349437362372974 -Event-Calling-File: switch_channel.c -Event-Calling-Function: switch_channel_perform_set_running_state -Event-Calling-Line-Number: 1931 -Event-Sequence: 34307 -Channel-State: CS_DESTROY -Channel-Call-State: DOWN -Channel-State-Number: 12 -Channel-Name: sofia/B2BUA/4986517174963%40call-home.net -Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7 -Call-Direction: inbound -Presence-Call-Direction: inbound -Channel-HIT-Dialplan: true -Answer-State: hangup -