summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Miop/McastFragmentation/Hello.idl
blob: f52f7ea2240e19f4751cac8807f7db33af3cbf73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 ();
    };
};