blob: 7c5a06b43208dffa02ac28744797576173c83baf [file] [log] [blame]
Harald Welteac359802017-04-12 12:13:44 +02001///////////////////////////////////////////////////////////////////////////////
2// //
3// Copyright Test Competence Center (TCC) ETH 2008 //
4// //
5// The copyright to the computer program(s) herein is the property of TCC. //
6// The program(s) may be used and/or copied only with the written permission //
7// of TCC or in accordance with the terms and conditions stipulated in the //
8// agreement/contract under which the program(s) have been supplied //
9// //
10///////////////////////////////////////////////////////////////////////////////
11//
12// File: MTP3asp_PortType.ttcn
13// Reference: ITU-T Recommendation Q.704, RFC3332
14// Rev: R11A01
15// Prodnr: CNL 113 337
16// Updated: 2008-02-07
17// Contact: http://ttcn.ericsson.se
18
19module MTP3asp_PortType
20{
21
22 import from MTP3asp_Types all;
23// *************************************************************************
24// * MTP3 port type definitions *
25// *************************************************************************
26
27 // MTP3 port type used by the component up to the MTP3 SAP
28 // (eg. any component connected to the MTP3 test port)
29 type port MTP3asp_PT message
30 {
31 in ASP_MTP3_TRANSFERind;
32 in ASP_MTP3_PAUSE;
33 in ASP_MTP3_RESUME;
34 in ASP_MTP3_STATUS;
35 out ASP_MTP3_TRANSFERreq;
36 } with {extension "provider internal"} //!!ethlel
37
38 // MTP3 port type used by the component up to the MTP3 SAP
39 // (e.g. the distribution component)
40 type port MTP3asp_SP_PT message
41 {
42 in ASP_MTP3_TRANSFERreq;
43 out ASP_MTP3_TRANSFERind;
44 }
45 with {extension "internal"}
46
47//Connecting functions
48//----------------------------
49/*
50ethlel
51
52external function f_MTP3_SEA_connect
53 ( inout MTP3asp_PT portRef,
54 in charstring Hostname,
55 in integer Port,
56 in charstring EntityName,
57 in boolean Http //or MPH Port is provided
58 )return boolean;
59
60external function f_MTP3_SEA_disconnect
61 ( inout MTP3asp_PT portRef
62 )return boolean;
63*/
64
65
66}//eof module