forked from intel/openlldp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lldp_evb_cmds.c
660 lines (554 loc) · 16.3 KB
/
lldp_evb_cmds.c
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
/******************************************************************************
Implementation of EVB TLVs for LLDP
(c) Copyright IBM Corp. 2010, 2012
Author(s): Jens Osterkamp <jens at linux.vnet.ibm.com>
Author(s): Thomas Richter <tmricht at linux.vnet.ibm.com>
This program is free software; you can redistribute it and/or modify it
under the terms and conditions of the GNU General Public License,
version 2, as published by the Free Software Foundation.
This program is distributed in the hope it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
The full GNU General Public License is included in this distribution in
the file called "COPYING".
******************************************************************************/
#define _GNU_SOURCE
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "lldp.h"
#include "lldp_evb.h"
#include "qbg_vdp.h"
#include "lldp_tlv.h"
#include "lldp_mand_clif.h"
#include "config.h"
#include "clif_msgs.h"
#include "messages.h"
#define EVB_BUF_SIZE 256
#define ARG_EVB_FORWARDING_MODE "fmode"
#define VAL_EVB_FMODE_BRIDGE "bridge"
#define VAL_EVB_FMODE_REFLECTIVE_RELAY "reflectiverelay"
#define ARG_EVB_CAPABILITIES "capabilities"
#define VAL_EVB_CAPA_RTE "rte"
#define VAL_EVB_CAPA_ECP "ecp"
#define VAL_EVB_CAPA_VDP "vdp"
#define VAL_EVB_CAPA_NONE "none"
#define ARG_EVB_VSIS "vsis"
#define ARG_EVB_RTE "rte"
/*
* Read EVB specific data from the configuration file.
*/
static const char *evb_conf_string(char *ifname, enum agent_type type,
char *ext, int def)
{
char arg_path[EVB_BUF_SIZE];
const char *param = NULL;
snprintf(arg_path, sizeof(arg_path), "%s%08x.%s",
TLVID_PREFIX, TLVID_8021Qbg(LLDP_EVB_SUBTYPE), ext);
if (get_cfg(ifname, type, arg_path, ¶m, CONFIG_TYPE_STRING)) {
LLDPAD_INFO("%s:%s agent %d loading EVB policy for %s"
" failed, using default (%d)\n", __func__,
ifname, type, ext, def);
return 0;
}
return param;
}
/*
* Read forwarding mode from configuration file.
*/
u8 evb_conf_fmode(char *ifname, enum agent_type type)
{
u8 smode = LLDP_EVB_CAPABILITY_FORWARD_STANDARD;
const char *value;
value = evb_conf_string(ifname, type, ARG_EVB_FORWARDING_MODE, smode);
if (value) {
if (strcasestr(value, VAL_EVB_FMODE_BRIDGE))
smode = LLDP_EVB_CAPABILITY_FORWARD_STANDARD;
if (strcasestr(value, VAL_EVB_FMODE_REFLECTIVE_RELAY))
smode = LLDP_EVB_CAPABILITY_FORWARD_REFLECTIVE_RELAY;
LLDPAD_DBG("%s:%s agent %d policy %s %s(%#x)\n", __func__,
ifname, type, ARG_EVB_FORWARDING_MODE, value, smode);
}
return smode;
}
/*
* Read maximum number of VSIs from configuration file.
*/
u16 evb_conf_vsis(char *ifname, enum agent_type type)
{
u16 svsi = LLDP_EVB_DEFAULT_SVSI;
const char *value;
value = evb_conf_string(ifname, type, ARG_EVB_VSIS, svsi);
if (value) {
svsi = atoi(value);
LLDPAD_DBG("%s:%s agent %d policy %s %s(%#x)\n", __func__,
ifname, type, ARG_EVB_VSIS, value, svsi);
}
return svsi;
}
/*
* Read capabilities from configuration file.
*/
u8 evb_conf_capa(char *ifname, enum agent_type type)
{
u8 scap = 0;
const char *value;
value = evb_conf_string(ifname, type, ARG_EVB_CAPABILITIES, scap);
if (value) {
if (strcasestr(value, VAL_EVB_CAPA_RTE))
scap = LLDP_EVB_CAPABILITY_PROTOCOL_RTE;
if (strcasestr(value, VAL_EVB_CAPA_ECP))
scap |= LLDP_EVB_CAPABILITY_PROTOCOL_ECP;
if (strcasestr(value, VAL_EVB_CAPA_VDP))
scap |= LLDP_EVB_CAPABILITY_PROTOCOL_VDP;
if (strcasestr(value, VAL_EVB_CAPA_NONE))
scap = 0;
LLDPAD_DBG("%s:%s agent %d policy %s %s(%#x)\n",
__func__, ifname, type, ARG_EVB_CAPABILITIES, value,
scap);
}
return scap;
}
/*
* Read RTE value from configuration file.
*/
u8 evb_conf_rte(char *ifname, enum agent_type type)
{
u8 rte = LLDP_EVB_DEFAULT_RTE;
const char *value;
value = evb_conf_string(ifname, type, ARG_EVB_RTE, rte);
if (value) {
rte = atoi(value);
LLDPAD_DBG("%s:%s agent %d policy %s %s(%#x)\n", __func__,
ifname, type, ARG_EVB_RTE, value, rte);
}
return rte;
}
/*
* Read transmit status from configuration file.
*/
int evb_conf_enabletx(char *ifname, enum agent_type type)
{
return is_tlv_txenabled(ifname, type, TLVID_8021Qbg(LLDP_EVB_SUBTYPE));
}
static int evb_cmdok(struct cmd *cmd, int expected)
{
if (cmd->cmd != expected)
return cmd_invalid;
switch (cmd->tlvid) {
case TLVID_8021Qbg(LLDP_EVB_SUBTYPE):
if (cmd->type != NEAREST_CUSTOMER_BRIDGE)
return cmd_agent_not_supported;
return cmd_success;
case INVALID_TLVID:
return cmd_invalid;
default:
return cmd_not_applicable;
}
}
static int
get_arg_tlvtxenable(struct cmd *cmd, char *arg, UNUSED char *argvalue,
char *obuf, int obuf_len)
{
cmd_status good_cmd = evb_cmdok(cmd, cmd_gettlv);
char *s, arg_path[EVB_BUF_SIZE];
int value;
if (good_cmd != cmd_success)
return good_cmd;
snprintf(arg_path, sizeof(arg_path), "%s%08x.%s",
TLVID_PREFIX, cmd->tlvid, arg);
if (get_cfg(cmd->ifname, cmd->type, arg_path, &value, CONFIG_TYPE_BOOL))
value = false;
if (value)
s = VAL_YES;
else
s = VAL_NO;
snprintf(obuf, obuf_len, "%02x%s%04x%s",
(unsigned int)strlen(arg), arg, (unsigned int)strlen(s), s);
return cmd_success;
}
static int _set_arg_tlvtxenable(struct cmd *cmd, char *arg, char *argvalue,
bool test)
{
int value;
char arg_path[EVB_BUF_SIZE];
struct evb_data *ed;
cmd_status good_cmd = evb_cmdok(cmd, cmd_settlv);
if (good_cmd != cmd_success)
return good_cmd;
if (!strcasecmp(argvalue, VAL_YES))
value = 1;
else if (!strcasecmp(argvalue, VAL_NO))
value = 0;
else
return cmd_bad_params;
ed = evb_data((char *) &cmd->ifname, cmd->type);
if (ed) {
if (vdp_vsis(ed->ifname))
return cmd_failed;
}
if (test)
return cmd_success;
snprintf(arg_path, sizeof(arg_path), "%s%08x.%s",
TLVID_PREFIX, cmd->tlvid, arg);
if (set_cfg(cmd->ifname, cmd->type, arg_path, &value,
CONFIG_TYPE_BOOL)){
LLDPAD_ERR("%s: error saving EVB enabletx (%s)\n", cmd->ifname,
argvalue);
return cmd_failed;
}
if (ed)
ed->txmit = value;
LLDPAD_INFO("%s: changed EVB enabletx (%s)\n", cmd->ifname, argvalue);
somethingChangedLocal(cmd->ifname, cmd->type);
return cmd_success;
}
static int set_arg_tlvtxenable(struct cmd *cmd, char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_tlvtxenable(cmd, arg, argvalue, false);
}
static int test_arg_tlvtxenable(struct cmd *cmd, char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
/*
* Make sure either evb draft 0.2 or evb ratified standard is
* running at the same time but not both.
*/
if (!strcasecmp(argvalue, VAL_YES)
&& is_tlv_txenabled(cmd->ifname, cmd->type,
TLVID(OUI_IEEE_8021Qbg22,
LLDP_EVB22_SUBTYPE))) {
LLDPAD_ERR("%s:%s evb protocol already enabled\n",
__func__, cmd->ifname);
return cmd_failed;
}
return _set_arg_tlvtxenable(cmd, arg, argvalue, true);
}
static int get_arg_fmode(struct cmd *cmd, char *arg, UNUSED char *argvalue,
char *obuf, int obuf_len)
{
cmd_status good_cmd = evb_cmdok(cmd, cmd_gettlv);
char *s;
u8 mode;
if (good_cmd != cmd_success)
return good_cmd;
mode = evb_conf_fmode(cmd->ifname, cmd->type);
if (mode & LLDP_EVB_CAPABILITY_FORWARD_REFLECTIVE_RELAY)
s = VAL_EVB_FMODE_REFLECTIVE_RELAY;
else
s = VAL_EVB_FMODE_BRIDGE;
snprintf(obuf, obuf_len, "%02x%s%04x%s",
(unsigned int)strlen(arg), arg, (unsigned int)strlen(s), s);
return cmd_success;
}
static int _set_arg_fmode(struct cmd *cmd, const char *argvalue, bool test)
{
u8 smode = 0;
char arg_path[EVB_BUF_SIZE];
struct evb_data *ed;
cmd_status good_cmd = evb_cmdok(cmd, cmd_settlv);
if (good_cmd != cmd_success)
return good_cmd;
if (!strcasecmp(argvalue, VAL_EVB_FMODE_BRIDGE))
smode = LLDP_EVB_CAPABILITY_FORWARD_STANDARD;
if (!strcasecmp(argvalue, VAL_EVB_FMODE_REFLECTIVE_RELAY))
smode = LLDP_EVB_CAPABILITY_FORWARD_REFLECTIVE_RELAY;
if (smode == 0)
return cmd_bad_params;
ed = evb_data((char *) &cmd->ifname, cmd->type);
if (ed) {
if (vdp_vsis(ed->ifname))
return cmd_failed;
}
if (test)
return cmd_success;
snprintf(arg_path, sizeof(arg_path), "%s%08x.fmode",
TLVID_PREFIX, cmd->tlvid);
if (set_cfg(cmd->ifname, cmd->type, arg_path, &argvalue,
CONFIG_TYPE_STRING)) {
LLDPAD_ERR("%s: saving EVB forwarding mode failed\n",
cmd->ifname);
return cmd_failed;
}
if (ed)
ed->policy.smode = smode;
LLDPAD_INFO("%s: changed EVB forwarding mode (%s)\n", cmd->ifname,
argvalue);
somethingChangedLocal(cmd->ifname, cmd->type);
return cmd_success;
}
static int set_arg_fmode(struct cmd *cmd, UNUSED char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_fmode(cmd, argvalue, false);
}
static int test_arg_fmode(struct cmd *cmd, UNUSED char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_fmode(cmd, argvalue, true);
}
static int
get_arg_capabilities(struct cmd *cmd, char *arg, UNUSED char *argvalue,
char *obuf, int obuf_len)
{
int comma = 0;
char t[EVB_BUF_SIZE];
u8 scap;
cmd_status good_cmd = evb_cmdok(cmd, cmd_gettlv);
if (good_cmd != cmd_success)
return good_cmd;
scap = evb_conf_capa(cmd->ifname, cmd->type);
memset(t, 0, sizeof t);
if (scap & LLDP_EVB_CAPABILITY_PROTOCOL_RTE) {
strcat(t, VAL_EVB_CAPA_RTE);
comma = 1;
}
if (scap & LLDP_EVB_CAPABILITY_PROTOCOL_ECP) {
if (comma)
strcat(t, " ");
strcat(t, VAL_EVB_CAPA_ECP);
comma = 1;
}
if (scap & LLDP_EVB_CAPABILITY_PROTOCOL_VDP) {
if (comma)
strcat(t, " ");
strcat(t, VAL_EVB_CAPA_VDP);
}
snprintf(obuf, obuf_len, "%02x%s%04x%s",
(unsigned int) strlen(arg), arg, (unsigned int) strlen(t), t);
return cmd_success;
}
/*
* Check for valid parameters: rte,ecp,vpd,none and combinations thereof
*/
static int check_capabilities(const char *capabilities, u8 *scap)
{
char *cp, *old_string, *string;
int retcode = 0;
*scap = 0;
old_string = string = strdup(capabilities);
if (!string)
return -1;
while ((cp = strtok(string, ", "))) {
if (!strcasecmp(cp, VAL_EVB_CAPA_RTE))
*scap |= LLDP_EVB_CAPABILITY_PROTOCOL_RTE;
else if (!strcasecmp(cp, VAL_EVB_CAPA_ECP))
*scap |= LLDP_EVB_CAPABILITY_PROTOCOL_ECP;
else if (!strcasecmp(cp, VAL_EVB_CAPA_VDP))
*scap |= LLDP_EVB_CAPABILITY_PROTOCOL_VDP;
else if (!strcasecmp(cp, VAL_EVB_CAPA_NONE)) {
if (*scap) /* Invalid combination */
retcode = -1;
break;
} else {
retcode = -1;
break;
}
string = 0;
}
free(old_string);
return retcode;
}
static int
_set_arg_capabilities(struct cmd *cmd, const char *argvalue, bool test)
{
u8 scap = 0;
char arg_path[EVB_BUF_SIZE];
struct evb_data *ed;
cmd_status good_cmd = evb_cmdok(cmd, cmd_settlv);
if (good_cmd != cmd_success)
return good_cmd;
if (check_capabilities(argvalue, &scap) < 0)
return cmd_bad_params;
ed = evb_data((char *) &cmd->ifname, cmd->type);
if (ed)
if (vdp_vsis(ed->ifname))
return cmd_failed;
if (test)
return cmd_success;
snprintf(arg_path, sizeof(arg_path), "%s%08x.capabilities",
TLVID_PREFIX, cmd->tlvid);
if (set_cfg(cmd->ifname, cmd->type, arg_path, &argvalue,
CONFIG_TYPE_STRING)) {
LLDPAD_ERR("%s: saving EVB capabilities (%#x) failed\n",
cmd->ifname, scap);
return cmd_failed;
}
if (ed)
ed->policy.scap = scap;
LLDPAD_INFO("%s: changed EVB capabilities (%#x)\n", cmd->ifname, scap);
somethingChangedLocal(cmd->ifname, cmd->type);
return cmd_success;
}
static int
set_arg_capabilities(struct cmd *cmd, UNUSED char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_capabilities(cmd, argvalue, false);
}
static int
test_arg_capabilities(struct cmd *cmd, UNUSED char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_capabilities(cmd, argvalue, true);
}
static int get_arg_rte(struct cmd *cmd, char *arg, UNUSED char *argvalue,
char *obuf, int obuf_len)
{
char s[EVB_BUF_SIZE];
u8 rte;
cmd_status good_cmd = evb_cmdok(cmd, cmd_gettlv);
if (good_cmd != cmd_success)
return good_cmd;
rte = evb_conf_rte(cmd->ifname, cmd->type);
if (sprintf(s, "%i", rte) <= 0)
return cmd_invalid;
snprintf(obuf, obuf_len, "%02x%s%04x%s",
(unsigned int) strlen(arg), arg, (unsigned int) strlen(s), s);
return cmd_success;
}
static int _set_arg_rte(struct cmd *cmd, const char *argvalue, bool test)
{
int value;
char arg_path[EVB_BUF_SIZE];
struct evb_data *ed = NULL;
cmd_status good_cmd = evb_cmdok(cmd, cmd_settlv);
if (good_cmd != cmd_success)
return good_cmd;
value = atoi(argvalue);
if ((value < 0) || value > LLDP_EVB_DEFAULT_MAX_RTE)
return cmd_bad_params;
ed = evb_data((char *) &cmd->ifname, cmd->type);
if (ed)
if (vdp_vsis(ed->ifname))
return cmd_failed;
if (test)
return cmd_success;
snprintf(arg_path, sizeof(arg_path), "%s%08x.rte", TLVID_PREFIX,
cmd->tlvid);
if (set_cfg(cmd->ifname, cmd->type, arg_path, &argvalue,
CONFIG_TYPE_STRING)){
LLDPAD_ERR("%s: error saving EVB rte (%d)\n", cmd->ifname,
value);
return cmd_failed;
}
if (ed)
ed->policy.rte = value;
LLDPAD_INFO("%s: changed EVB rte (%#x)\n", cmd->ifname, value);
somethingChangedLocal(cmd->ifname, cmd->type);
return cmd_success;
}
static int set_arg_rte(struct cmd *cmd, UNUSED char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_rte(cmd, argvalue, false);
}
static int test_arg_rte(struct cmd *cmd, UNUSED char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_rte(cmd, argvalue, true);
}
static int get_arg_vsis(struct cmd *cmd, char *arg, UNUSED char *argvalue,
char *obuf, int obuf_len)
{
char s[EVB_BUF_SIZE];
u16 svsi;
cmd_status good_cmd = evb_cmdok(cmd, cmd_gettlv);
if (good_cmd != cmd_success)
return good_cmd;
svsi = evb_conf_vsis(cmd->ifname, cmd->type);
if (sprintf(s, "%04i", svsi) <= 0)
return cmd_invalid;
snprintf(obuf, obuf_len, "%02x%s%04x%s",
(unsigned int)strlen(arg), arg, (unsigned int)strlen(s), s);
return cmd_success;
}
static int _set_arg_vsis(struct cmd *cmd, const char *argvalue, bool test)
{
int value;
char arg_path[EVB_BUF_SIZE];
struct evb_data *ed;
cmd_status good_cmd = evb_cmdok(cmd, cmd_settlv);
if (good_cmd != cmd_success)
return good_cmd;
value = atoi(argvalue);
if ((value < 0) || (value > LLDP_EVB_DEFAULT_MAX_VSI))
return cmd_bad_params;
ed = evb_data((char *) &cmd->ifname, cmd->type);
if (ed)
if (vdp_vsis(ed->ifname))
return cmd_failed;
if (test)
return cmd_success;
snprintf(arg_path, sizeof(arg_path), "%s%08x.vsis", TLVID_PREFIX,
cmd->tlvid);
if (set_cfg(cmd->ifname, cmd->type, arg_path, &argvalue,
CONFIG_TYPE_STRING)){
LLDPAD_ERR("%s: error saving EVB vsi (%d)\n", cmd->ifname,
value);
return cmd_failed;
}
if (ed)
ed->policy.svsi = htons(value);
LLDPAD_INFO("%s: changed EVB vsis (%#x)\n", cmd->ifname, value);
somethingChangedLocal(cmd->ifname, cmd->type);
return cmd_success;
}
static int set_arg_vsis(struct cmd *cmd, UNUSED char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_vsis(cmd, argvalue, false);
}
static int test_arg_vsis(struct cmd *cmd, UNUSED char *arg, char *argvalue,
UNUSED char *obuf, UNUSED int obuf_len)
{
return _set_arg_vsis(cmd, argvalue, true);
}
static struct arg_handlers arg_handlers[] = {
{
.arg = ARG_EVB_FORWARDING_MODE,
.arg_class = TLV_ARG,
.handle_get = get_arg_fmode,
.handle_set = set_arg_fmode,
.handle_test = test_arg_fmode
},
{
.arg = ARG_EVB_CAPABILITIES,
.arg_class = TLV_ARG,
.handle_get = get_arg_capabilities,
.handle_set = set_arg_capabilities,
.handle_test = test_arg_capabilities
},
{
.arg = ARG_EVB_VSIS,
.arg_class = TLV_ARG,
.handle_get = get_arg_vsis,
.handle_set = set_arg_vsis,
.handle_test = test_arg_vsis
},
{ .arg = ARG_EVB_RTE,
.arg_class = TLV_ARG,
.handle_get = get_arg_rte,
.handle_set = set_arg_rte,
.handle_test = test_arg_rte
},
{
.arg = ARG_TLVTXENABLE,
.arg_class = TLV_ARG,
.handle_get = get_arg_tlvtxenable,
.handle_set = set_arg_tlvtxenable,
.handle_test = test_arg_tlvtxenable
},
{
.arg = 0
}
};
struct arg_handlers *evb_get_arg_handlers()
{
return &arg_handlers[0];
}