summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/Security/Big_Request/TX_Object.idl
blob: d9c7441a64a25f15cf25225f22a1a55366e2fd30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// -*- IDL -*-

//=============================================================================
/**
 * @file TX_Object.idl
 *
 * $Id$
 *
 * IDL for the SSLIOP Big_Request test.
 *
 * @author Andrew Finnell
 * @author Ossama Othman <ossama@uci.edu>
 */
//=============================================================================

#include <OctetSeq.pidl>

typedef CORBA::OctetSeq DataSeq;

interface TX_Object
{

  void send (in DataSeq data);
  void recv (out DataSeq data);

  oneway void shutdown ();

};