PAPI: Add bool type support in vppapigen. 07/15307/2
authorOle Troan <ot@cisco.com>
Tue, 16 Oct 2018 13:14:03 +0000 (15:14 +0200)
committerFlorin Coras <florin.coras@gmail.com>
Tue, 16 Oct 2018 15:27:05 +0000 (15:27 +0000)
Change-Id: I9c2eaa2ee04a1c9a92018afb92cb2c5610df2991
Signed-off-by: Ole Troan <ot@cisco.com>
src/vpp-api/python/vpp_papi/vpp_serializer.py

index 103a078..cac6dd6 100644 (file)
@@ -34,6 +34,7 @@ class BaseTypes():
                       'i32': '>i',
                       'u64': '>Q',
                       'f64': '>d',
+                      'bool': '>?',
                       'header': '>HI'}
 
         if elements > 0 and type == 'u8':
@@ -58,6 +59,7 @@ types['u32'] = BaseTypes('u32')
 types['i32'] = BaseTypes('i32')
 types['u64'] = BaseTypes('u64')
 types['f64'] = BaseTypes('f64')
+types['bool'] = BaseTypes('bool')
 
 
 class FixedList_u8():