papi: add missing base types to serializer

File "/vpp/src/vpp-api/python/vpp_papi/vpp_serializer.py", line 512, in __init__
    'Unknown message type {}'.format(f_type))
  vpp_papi.vpp_serializer.VPPSerializerValueError: Unknown message type i16

Type: fix

Change-Id: Ibf73dc8df90153db586afe614e47be49739bac2f
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
(cherry picked from commit ba2c7fad1d1448b40ea78f36e833821e9ab84687)
This commit is contained in:
Paul Vinciguerra 2019-11-23 21:02:27 -05:00 committed by Dave Wallace
parent cf758ecb71
commit 51b95951ba

View File

@ -143,9 +143,11 @@ class String(object):
return (x2.decode('utf8'), size + length_field_size)
types = {'u8': BaseTypes('u8'), 'u16': BaseTypes('u16'),
types = {'u8': BaseTypes('u8'), 'i8': BaseTypes('i8'),
'u16': BaseTypes('u16'), 'i16': BaseTypes('i16'),
'u32': BaseTypes('u32'), 'i32': BaseTypes('i32'),
'u64': BaseTypes('u64'), 'f64': BaseTypes('f64'),
'u64': BaseTypes('u64'), 'i64': BaseTypes('i64'),
'f64': BaseTypes('f64'),
'bool': BaseTypes('bool'), 'string': String}
class_types = {}