Blame view

DUREX/schema.ems 335 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version = "1.0.0"
description = ""

schema DUREX 
{
    enum        BOOLEAN{ TRUE, FALSE };   
    typedef     string<239> String; //MAXIMUM SIZE AVAILABLE

    uint8   serverBytesAvailable;
    uint8   clientBytesAvailable;
    String  serverData;
    String  clientData;
    BOOLEAN serverMoreData;
    BOOLEAN clientMoreData;
}