Project

General

Profile

Sip message » History » Version 10

Adrian Georgescu, 04/13/2009 10:51 AM

1 5 Adrian Georgescu
== sip_message ==
2 7 Adrian Georgescu
[[TOC(SipTesting*, sip_*, depth=2)]]
3 2 Adrian Georgescu
4 5 Adrian Georgescu
=== Description ===
5 3 Adrian Georgescu
6
Source code: [source:scripts/sip_message.py scripts/sip_message.py]
7
8 1 Adrian Georgescu
{{{
9
Usage: sip_message [options] [target-user@target-domain.com]
10
11
This will either sit idle waiting for an incoming MESSAGE request, or send a
12
MESSAGE request to the specified SIP target. In outgoing mode the program will
13
read the contents of the messages to be sent from standard input, Ctrl+D
14
signalling EOF as usual. In listen mode the program will quit when Ctrl+D is
15
pressed.
16
17
Options:
18
  -h, --help            show this help message and exit
19 9 Adrian Georgescu
  -a NAME, --account=NAME
20
                        The account name to use for any outgoing traffic. If
21
                        not supplied, the default account will be used.
22
  -c [FILE], --config_file=[FILE]
23
                        The path to a configuration file to use. This
24
                        overrides the default location of the configuration
25
                        file.
26
  -s [stdout|file|all|none], --trace-sip=[stdout|file|all|none]
27
                        Dump the raw contents of incoming and outgoing SIP
28
                        messages. The argument specifies where the messages
29
                        are to be dumped.
30
  -j [stdout|file|all|none], --trace-pjsip=[stdout|file|all|none]
31
                        Print PJSIP logging output. The argument specifies
32
                        where the messages are to be dumped.
33 1 Adrian Georgescu
  -m MESSAGE, --message=MESSAGE
34
                        Contents of the message to send. This disables reading
35
                        the message from standard input.
36 9 Adrian Georgescu
37 1 Adrian Georgescu
}}}
38
39
40 5 Adrian Georgescu
=== Example for receiving a message ===
41 1 Adrian Georgescu
42
43
{{{
44
adigeo@ag-imac3:~$sip_message 
45
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
46
Using default account: 31208005169@ag-projects.com
47
Registering ""Adrian G." <sip:31208005169@ag-projects.com>" at 81.23.228.150:5060
48
REGISTER was successful
49
Contact: <sip:4f855cb09b@192.168.1.6:51408> (expires in 300 seconds)
50
Other registered contacts:
51
<sip:31208005169@192.168.1.122:5062;line=634g6j67> (expires in 480 seconds)
52
<sip:5dac4295e9@192.168.1.6:51375> (expires in 95 seconds)
53
<sip:31208005169@192.168.1.123:5060> (expires in 77 seconds)
54
<sip:31208005169@192.168.1.1;uniq=5B2860C44383A3D6705629A7E1FB8> (expires in 1563 seconds)
55
<sip:31208005169@80.101.96.20:61578> (expires in 3069 seconds)
56
Press Ctrl+D to stop the program.
57
Received MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>", Content-Type: text/plain
58
dsgsgddsgs
59
Received MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>", Content-Type: text/plain
60
Testing short text messages in page mode!
61
}}}
62
63
=== Example for sending a message ===
64
65
{{{
66
adigeo@ag-imac3:~$sip_message  -a umts ag@ag-projects.com
67
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
68
Using account 'umts': adi@umts.ro
69
Press Ctrl+D on an empty line to end input and send the MESSAGE request.
70
dsgsgddsgs
71
Sending MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>" to "<sip:ag@ag-projects.com>" using proxy 81.23.228.150:5060
72
MESSAGE was accepted by remote party.
73
adigeo@ag-imac3:~$sip_message  -a umts ag@ag-projects.com
74
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
75
Using account 'umts': adi@umts.ro
76
Press Ctrl+D on an empty line to end input and send the MESSAGE request.
77
Testing short text messages in page mode!
78
Sending MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>" to "<sip:ag@ag-projects.com>" using proxy 81.23.228.150:5060
79
MESSAGE was accepted by remote party.
80
}}}