summaryrefslogtreecommitdiff
path: root/src/lib/pb/ipcp_config.proto
blob: becc63c0447b1de29b0df935439b01a23e36a5ef (plain)
1
2
3
4
5
6
7
8
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Ouroboros - Copyright (C) 2016 - 2024
 *
 * Layer configuration message
 *
 *    Dimitri Staessens <dimitri@ouroboros.rocks>
 *    Sander Vrijders   <sander@ouroboros.rocks>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * version 2.1 as published by the Free Software Foundation.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., http://www.fsf.org/about/contact/.
 */

syntax = "proto2";

import "model.proto";


message ls_config_msg {
        required uint32 pol      = 1;
        required uint32 t_recalc = 2;
        required uint32 t_update = 3;
        required uint32 t_timeo  = 4;
}

message routing_config_msg {
        required uint32 pol       = 1;
        optional ls_config_msg ls = 2;
}

message dt_config_msg {
        required uint32 addr_size           = 1;
        required uint32 eid_size            = 2;
        required uint32 max_ttl             = 3;
        required routing_config_msg routing = 4;
}

message dir_dht_config_msg {
        required uint32 alpha       = 1;
        required uint32 k           = 2;
        required uint32 t_expire    = 3;
        required uint32 t_refresh   = 4;
        required uint32 t_replicate = 5;
        required uint64 peer        = 6;
}

message dir_config_msg {
        required uint32 pol             = 1;
        optional dir_dht_config_msg dht = 2;
}

message uni_config_msg {
        required dt_config_msg dt      = 1;
        required dir_config_msg  dir   = 2;
        required uint32 addr_auth_type = 3;
        required uint32 cong_avoid     = 4;
}

message eth_config_msg {
        required string dev       = 1;
        required uint32 ethertype = 2;
}

message udp_config_msg {
        required uint32 ip_addr  = 1;
        required uint32 port     = 2;
        required uint32 dns_addr = 3; /* set to 0 if unused */
}

message ipcp_config_msg {
        required layer_info_msg layer_info =  1;
        required uint32 ipcp_type          =  2;
        optional uni_config_msg unicast    =  3;
        optional udp_config_msg udp        =  4;
        optional eth_config_msg eth        =  5;
}