blob: 201fa70c3af726e557d0caffe2359b2a10cceb2e (
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
|
/* -*- C++ -*- */
// $Id$
// @(#)ttcp.idl 1.1 10/18/96
interface ttcp_sequence {
typedef sequence<char> my_sequence;
oneway void send (in my_sequence ttcp_rec);
oneway void send_hack (in string ttcp_string);
oneway void start_timer ();
oneway void stop_timer ();
};
interface ttcp_string {
oneway void send (in string ttcp_string);
oneway void send_hack (in string ttcp_string);
oneway void start_timer ();
oneway void stop_timer ();
};
|