summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Miop/McastFragmentation/Hello.idl
blob: d7776aa569113f3b3f7b6e80c4009237ad96bf73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// $Id$

module Test {
    typedef sequence<octet> Octets;

    const string ClientIDs =
        "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

    interface UIPMC_Object {
        oneway void process (in Octets payload);
    };

    interface Hello {
        UIPMC_Object get_object ();

        oneway void shutdown ();
    };
};