Displaying 2 results from an estimated 2 matches for "capetown".
2007 Mar 29
3
Asterisk hangs up SIP call after 6 200 retransmits
...IP4 203.89.nnn.nnn
s=session
c=IN IP4 203.89.nnn.nnn
t=0 0
m=audio 11648 RTP/AVP 0 8 101
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=silenceSupp:off - - - -
---
-- Executing Wait("SIP/6499777777-b791bb60", "1") in new stack
capetown*CLI>
<-- SIP read from 147.202.nnn.nnn:5060:
INVITE sip:6499777777@203.89.nnn.nnn SIP/2.0
Record-Route: <sip:147.202.nnn.nnn;ftag=as4917b107;lr=on>
Via: SIP/2.0/UDP 147.202.nnn.nnn;branch=z9hG4bKd0e3.48331fd3.0
Via: SIP/2.0/UDP 202.180.nnn.nnn:5060;branch=z9hG4bK3757e55c;rport=5060
Fr...
2013 Jun 24
2
[OT] bash here documents
Suppose I have this C++ program:
#include <iostream>
int main (int argc, char** argv)
{
while (1)
{
char cmd[80];
std::cin.getline(cmd, 80);
std::cout << "response to " << cmd << std::endl;
}
}
compiled by: c++ -o junk junk.cpp
and I have this bash script:
#!/bin/bash
./junk <<EOF
blah
bleh
\cC
EOF
echo "Something