summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/Pbytebuf.ipdl
blob: d51878b872d8be7e0474cf3f7bb23cbdf28b1572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
union Foo {
    int;
    ByteBuf;
};

[ChildProc=any]
sync protocol Pbytebuf {
parent:
    async Msg(ByteBuf s, Foo f);
    sync SyncMsg(ByteBuf s, Foo f)
        returns (ByteBuf t, Foo g);
};