|
Last change
on this file since 33 was
22,
checked in by rings, 15 years ago
|
|
|
-
Property svn:executable set to
*
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * @author STF370
|
|---|
| 3 | * @version $Id$
|
|---|
| 4 | * @desc Ports, timers, primitives, test components, component variables
|
|---|
| 5 | * are defined here.
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | module TestSystem {
|
|---|
| 9 |
|
|---|
| 10 | import from LibSip_SIPTypesAndValues all;
|
|---|
| 11 | import from LibSip_SDPTypes all;
|
|---|
| 12 | //import from SipIsup_ISUP_MsgTypes all;
|
|---|
| 13 |
|
|---|
| 14 | type component SipSimu {
|
|---|
| 15 |
|
|---|
| 16 | // Ports
|
|---|
| 17 | port SipPort sipPort;
|
|---|
| 18 |
|
|---|
| 19 | // Component variables
|
|---|
| 20 |
|
|---|
| 21 | // Timers
|
|---|
| 22 |
|
|---|
| 23 | } // end of type component Simu
|
|---|
| 24 |
|
|---|
| 25 | type component SipTest {
|
|---|
| 26 |
|
|---|
| 27 | // Ports
|
|---|
| 28 | port SipTestPort testPort;
|
|---|
| 29 |
|
|---|
| 30 | // Component variables
|
|---|
| 31 |
|
|---|
| 32 | // Timers
|
|---|
| 33 |
|
|---|
| 34 | } // end of type component Test
|
|---|
| 35 |
|
|---|
| 36 | group portDefs {
|
|---|
| 37 |
|
|---|
| 38 | type port SipPort message {
|
|---|
| 39 | inout
|
|---|
| 40 | Request,
|
|---|
| 41 | REGISTER_Request,
|
|---|
| 42 | INVITE_Request,
|
|---|
| 43 | OPTIONS_Request,
|
|---|
| 44 | BYE_Request,
|
|---|
| 45 | CANCEL_Request,
|
|---|
| 46 | ACK_Request,
|
|---|
| 47 | PRACK_Request,
|
|---|
| 48 | NOTIFY_Request,
|
|---|
| 49 | SUBSCRIBE_Request,
|
|---|
| 50 | PUBLISH_Request,
|
|---|
| 51 | UPDATE_Request,
|
|---|
| 52 | REFER_Request,
|
|---|
| 53 | MESSAGE_Request,
|
|---|
| 54 | INFO_Request,
|
|---|
| 55 | Response,
|
|---|
| 56 | Raw
|
|---|
| 57 | };
|
|---|
| 58 |
|
|---|
| 59 | type port SipTestPort message {
|
|---|
| 60 | inout all
|
|---|
| 61 | };
|
|---|
| 62 | } // end group portDefs
|
|---|
| 63 | } // end module TestSystem
|
|---|
Note: See
TracBrowser
for help on using the repository browser.