aboutsummaryrefslogtreecommitdiffstats
path: root/libccnx-transport-rta/ccnx/transport/transport_rta/config/config_Codec_Ccnb.xc
blob: 04820d6e0c879ad8f562a78f2dbedadcc6ffe950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <config.h>
#include <stdio.h>
#include "config_Codec_Ccnb.h"

#include "components.h"

/**
 * Generates:
 
 { "CCNB_CODEC" : { } }
 */
ProtocolStackConfig *
ccnbCodec_ProtocolStackConfig(ProtocolStackConfig *stackConfig)
{
    return protocolStackConfig_Add(stackConfig, ccnbCodec_GetName(), parcJSONValue_CreateNULL());//ccnxJson_CreateObject());
}

ConnectionConfig *
ccnbCodec_ConnectionConfig(ConnectionConfig *connectionConfig)
{
    return connectionConfig_Add(connectionConfig, ccnbCodec_GetName(), parcJSONValue_CreateNULL());//ccnxJson_CreateObject());
}


const char * ccnbCodec_GetName()
{
    return RtaComponentNames[CODEC_CCNB];

}