mirror of
https://github.com/Martin-P/OpenV2G.git
synced 2024-11-18 12:53:58 +00:00
* fixes name table entries issue
git-svn-id: https://svn.code.sf.net/p/openv2g/code/trunk@54 d9f2db14-54d0-4bde-b00c-16405c910529
This commit is contained in:
parent
32078408b5
commit
e8ba2a611c
4 changed files with 1122 additions and 1120 deletions
|
@ -179,7 +179,7 @@ struct exiNamePartition localNamePartitions[9] = {
|
||||||
#endif /*EXI_DEBUG*/
|
#endif /*EXI_DEBUG*/
|
||||||
|
|
||||||
#if EXI_DEBUG == EXI_DEBUG_OFF
|
#if EXI_DEBUG == EXI_DEBUG_OFF
|
||||||
struct exiNamePartition localNamePartitions[9] = {
|
static struct exiNamePartition localNamePartitions[9] = {
|
||||||
{ 9 },
|
{ 9 },
|
||||||
{ 4 },
|
{ 4 },
|
||||||
{ 2 },
|
{ 2 },
|
||||||
|
|
|
@ -75,7 +75,7 @@ char * uris[] = {
|
||||||
#endif /*EXI_DEBUG*/
|
#endif /*EXI_DEBUG*/
|
||||||
|
|
||||||
#if EXI_DEBUG == EXI_DEBUG_ON
|
#if EXI_DEBUG == EXI_DEBUG_ON
|
||||||
struct exiNamePartition localNamePartitions[5] = {
|
static struct exiNamePartition localNamePartitions[5] = {
|
||||||
{ 7, localNames0 },
|
{ 7, localNames0 },
|
||||||
{ 4, localNames1 },
|
{ 4, localNames1 },
|
||||||
{ 2, localNames2 },
|
{ 2, localNames2 },
|
||||||
|
|
|
@ -33,10 +33,10 @@
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
/* EXI codec only */
|
/* EXI codec only */
|
||||||
/*return main_codec(argc, argv); */
|
return main_codec(argc, argv);
|
||||||
|
|
||||||
/* V2G client / service example scenario */
|
/* V2G client / service example scenario */
|
||||||
return main_service(argc, argv);
|
/*return main_service(argc, argv); */
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue