From: Marek Gradzki Date: Wed, 15 Jun 2016 14:38:33 +0000 (+0200) Subject: VPP-118: add support for variable length arrays to jvpp X-Git-Tag: v16.09-rc1~247 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=fa42e25c4e498c57e15ebb0ded56502a61b7dc08;hp=fa42e25c4e498c57e15ebb0ded56502a61b7dc08;p=vpp.git VPP-118: add support for variable length arrays to jvpp * extends VPP's message definition language with the following syntax: u32 count: u8 array[count]; which is traslated to: u32 count; u8 array[0]; but now, python API representation generated by vppapigen contains information about where the array length is stored. * modifies existing response messages to use the new syntax Change-Id: I68210bc7a3a755d03d067e9b79a567f40e2d31f3 Signed-off-by: Marek Gradzki ---