Blame view

DUREX/schema.ems 649 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
version = "1.0.0"
description = ""

schema DUREX 
{
    enum        BOOLEAN{ TRUE, FALSE };   
    typedef     string<239> String; //MAXIMUM SIZE AVAILABLE
Imanol-Mikel Barba Sabariego authored
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    uint8   numServerBytes
    {
        readonly  
    }
    uint8   numClientBytes
    {
        writeonly
    }  
    String  serverData
    {
        readonly
    }
    String  clientData
    {
        writeonly
    }
    uint8   numServerPackets
    {
        readonly
    }
    uint8   numClientPackets
    {
        writeonly
    }
    BOOLEAN clientMessageAvailable
    {
        writeonly
    }
    BOOLEAN serverMessageAvailable
    {
        readonly
        indicator
    }
Imanol-Mikel Barba Sabariego authored
42
}