/* * @author STF370 * @version $Id$ * @desc Ports, timers, primitives, test components, component variables * are defined here. */ module TestSystem { import from LibSip_SIPTypesAndValues all; import from LibSip_SDPTypes all; //import from SipIsup_ISUP_MsgTypes all; type component SipSimu { // Ports port SipPort sipPort; // Component variables // Timers } // end of type component Simu type component SipTest { // Ports port SipTestPort testPort; // Component variables // Timers } // end of type component Test group portDefs { type port SipPort message { inout Request, REGISTER_Request, INVITE_Request, OPTIONS_Request, BYE_Request, CANCEL_Request, ACK_Request, PRACK_Request, NOTIFY_Request, SUBSCRIBE_Request, PUBLISH_Request, UPDATE_Request, REFER_Request, MESSAGE_Request, INFO_Request, Response, Raw }; type port SipTestPort message { inout all }; } // end group portDefs } // end module TestSystem