Re: [dpdk-dev] [PATCH v3 3/6] cfgfile: add support for configurable comment character

2017-03-29 Thread Legacy, Allain
> -Original Message- > From: Dumitrescu, Cristian [mailto:cristian.dumitre...@intel.com] > Sent: Wednesday, March 29, 2017 5:23 AM > > > > +/** Configuration file operation optional arguments */ struct > > +rte_cfgfile_parameters { > > + char comment_character; > > + /**< Config file co

Re: [dpdk-dev] [PATCH v3 3/6] cfgfile: add support for configurable comment character

2017-03-29 Thread Dumitrescu, Cristian
> -Original Message- > From: Allain Legacy [mailto:allain.leg...@windriver.com] > Sent: Wednesday, March 29, 2017 1:48 AM > To: Dumitrescu, Cristian ; Richardson, Bruce > > Cc: dev@dpdk.org; yuanhan@linux.intel.com; > thomas.monja...@6wind.com > Subject: [PATCH v3 3/6] cfgfile: add s

[dpdk-dev] [PATCH v3 3/6] cfgfile: add support for configurable comment character

2017-03-28 Thread Allain Legacy
The current cfgfile comment character is hardcoded to ';'. This commit a new API to allow the user to specify which comment character to use while parsing the file. This is to ease adoption by applications that have an existing configuration file which may use a different comment character. For

[dpdk-dev] [PATCH v3 3/6] cfgfile: add support for configurable comment character

2017-03-28 Thread Allain Legacy
The current cfgfile comment character is hardcoded to ';'. This commit a new API to allow the user to specify which comment character to use while parsing the file. This is to ease adoption by applications that have an existing configuration file which may use a different comment character. For