blob: 27aae086f62a1d103a4e35cccc9bf1715a243c95 [file] [log] [blame]
Harald Welteac359802017-04-12 12:13:44 +02001/******************************************************************************
2* Copyright (c) 2005, 2014 Ericsson AB
3* All rights reserved. This program and the accompanying materials
4* are made available under the terms of the Eclipse Public License v1.0
5* which accompanies this distribution, and is available at
6* http://www.eclipse.org/legal/epl-v10.html
7*
8* Contributors:
9* Peter Dimitrov- initial implementation and initial documentation
10* Adam Delic
11* Eduard Czimbalmos
12* Endre Kulcsar
13* Gabor Bettesch
14* Gabor Szalai
15* Tamas Buti
16* Zoltan Medve
17******************************************************************************/
18//
19// File: SCTPasp_PortType.ttcn
20// Description: SCTPasp testport definition file
21// Rev: R11A
22// Prodnr: CNL 113 469
23//
24
25module SCTPasp_PortType
26{
27
28import from SCTPasp_Types all;
29
30//=========================================================================
31//Port Types
32//=========================================================================
33
34type port SCTPasp_PT message
35{
36 inout ASP_SCTP;
37
38 out ASP_SCTP_Connect;
39 out ASP_SCTP_ConnectFrom;
40 out ASP_SCTP_Listen;
41 out ASP_SCTP_SetSocketOptions;
42 out ASP_SCTP_Close;
43
44 in ASP_SCTP_ASSOC_CHANGE;
45 in ASP_SCTP_PEER_ADDR_CHANGE;
46 in ASP_SCTP_SEND_FAILED;
47 in ASP_SCTP_REMOTE_ERROR;
48 in ASP_SCTP_SHUTDOWN_EVENT;
49 in ASP_SCTP_PARTIAL_DELIVERY_EVENT;
50 in ASP_SCTP_ADAPTION_INDICATION;
51
52 in ASP_SCTP_Connected;
53 in ASP_SCTP_SENDMSG_ERROR;
54 in ASP_SCTP_RESULT;
55
56} with { extension "provider" }
57
58}//end of module
59with {
60extension "version R11A"
61}
62