本文整理汇总了C++中OC_LOG_V函数的典型用法代码示例。如果您正苦于以下问题:C++ OC_LOG_V函数的具体用法?C++ OC_LOG_V怎么用?C++ OC_LOG_V使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了OC_LOG_V函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: InitGetRequest
int InitGetRequest(OCQualityOfService qos)
{
std::ostringstream query;
//Get most recently inserted resource
const ResourceNode * resource = getResource();
if(!resource)
{
OC_LOG_V(ERROR, TAG, "Resource null, can't do GET request\n");
return -1;
}
query << resource->uri;
OC_LOG_V(INFO, TAG,"Executing InitGetRequest, Query: %s", query.str().c_str());
return (InvokeOCDoResource(query, OC_REST_GET, &resource->endpoint,
(qos == OC_HIGH_QOS)?OC_HIGH_QOS:OC_LOW_QOS, getReqCB, NULL, 0));
}
开发者ID:TianyouLi,项目名称:iotivity,代码行数:17,代码来源:occlientbasicops.cpp
示例2: InitGetRequest
int InitGetRequest(OCQualityOfService qos)
{
OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
std::ostringstream query;
query << coapServerResource;
return (InvokeOCDoResource(query, OC_REST_GET,
(qos == OC_HIGH_QOS) ? OC_HIGH_QOS : OC_LOW_QOS, restRequestCB, NULL, 0));
}
开发者ID:chetan336,项目名称:iotivity,代码行数:8,代码来源:ocremoteaccessclient.cpp
示例3: InitPutRequest
int InitPutRequest()
{
OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
std::ostringstream query;
query << (coapSecureResource ? "coaps://" : "coap://") << coapServerIP
<< ":" << coapServerPort << coapServerResource;
return (InvokeOCDoResource(query, OC_REST_PUT, OC_LOW_QOS, putReqCB, NULL, 0));
}
开发者ID:prajoshpremdas,项目名称:iotivity,代码行数:8,代码来源:occlientbasicops.cpp
示例4: LcdOCEntityHandlerCb
OCEntityHandlerResult LcdOCEntityHandlerCb(OCEntityHandlerFlag flag, OCEntityHandlerRequest * entityHandlerRequest,
void *callbackParam)
{
OCEntityHandlerResult ehRet = OC_EH_OK;
OCEntityHandlerResponse response = {0};
OCRepPayload* payload = OCRepPayloadCreate();
if(!payload) {
OC_LOG(ERROR, TAG, ("Failed to allocate Payload"));
return OC_EH_ERROR;
}
if(entityHandlerRequest && (flag & OC_REQUEST_FLAG)) {
OC_LOG (INFO, TAG, ("Flag includes OC_REQUEST_FLAG"));
if(OC_REST_GET == entityHandlerRequest->method) {
OCRepPayloadSetUri(payload, "/grove/lcd");
OCRepPayloadSetPropString(payload, "lcd", (const char *)lcd.str);
} else if(OC_REST_PUT == entityHandlerRequest->method) {
OC_LOG(INFO, TAG, ("PUT request"));
OCRepPayload *rep = (OCRepPayload *)entityHandlerRequest->payload;
OCRepPayloadGetPropString(rep, "lcd", &lcd.str);
OC_LOG_V(INFO, TAG, "LCD string: %s", lcd.str);
lcd_put();
OCRepPayloadSetPropString(payload, "lcd", (const char *)lcd.str);
}
if (ehRet == OC_EH_OK) {
// Format the response. Note this requires some info about the request
response.requestHandle = entityHandlerRequest->requestHandle;
response.resourceHandle = entityHandlerRequest->resource;
response.ehResult = ehRet;
response.payload = (OCPayload*) payload;
response.numSendVendorSpecificHeaderOptions = 0;
memset(response.sendVendorSpecificHeaderOptions, 0, sizeof response.sendVendorSpecificHeaderOptions);
memset(response.resourceUri, 0, sizeof response.resourceUri);
// Indicate that response is NOT in a persistent buffer
response.persistentBufferFlag = 0;
// Send the response
if (OCDoResponse(&response) != OC_STACK_OK) {
OC_LOG(ERROR, TAG, "Error sending response");
ehRet = OC_EH_ERROR;
}
}
}
if (entityHandlerRequest && (flag & OC_OBSERVE_FLAG)) {
if (OC_OBSERVE_REGISTER == entityHandlerRequest->obsInfo.action) {
OC_LOG (INFO, TAG, ("Received OC_OBSERVE_REGISTER from client"));
gLightUnderObservation = 1;
} else if (OC_OBSERVE_DEREGISTER == entityHandlerRequest->obsInfo.action) {
OC_LOG (INFO, TAG, ("Received OC_OBSERVE_DEREGISTER from client"));
gLightUnderObservation = 0;
}
}
OCRepPayloadDestroy(payload);
return ehRet;
}
开发者ID:Lyoncore,项目名称:iotivity-demo-uc15,代码行数:58,代码来源:demoserver.cpp
示例5: printCred
static void printCred(const OicSecCred_t * cred)
{
EXPECT_TRUE(NULL != cred);
const OicSecCred_t *credTmp1 = NULL;
for(credTmp1 = cred; credTmp1; credTmp1 = credTmp1->next)
{
OC_LOG_V(INFO, TAG, "\ncred->credId = %d", credTmp1->credId);
OC_LOG_V(INFO, TAG, "cred->subject.id = %s", credTmp1->subject.id);
OC_LOG_V(INFO, TAG, "cred->credType = %d", credTmp1->credType);
if(credTmp1->privateData.data)
{
OC_LOG_V(INFO, TAG, "cred->privateData.data = %s", credTmp1->privateData.data);
}
if(credTmp1->publicData.data)
{
OC_LOG_V(INFO, TAG, "cred->publicData.data = %s", credTmp1->publicData.data);
}
OC_LOG_V(INFO, TAG, "cred->ownersLen = %zu", credTmp1->ownersLen);
for(size_t i = 0; i < cred->ownersLen; i++)
{
OC_LOG_V(INFO, TAG, "cred->owners[%zu].id = %s", i, credTmp1->owners[i].id);
}
}
}
开发者ID:keyfour,项目名称:iotivity,代码行数:25,代码来源:credentialresource.cpp
示例6: OCEntityHandlerCb
OCEntityHandlerResult OCEntityHandlerCb (OCEntityHandlerFlag flag,
OCEntityHandlerRequest *entityHandlerRequest, void* callbackParam)
{
OCEntityHandlerResult result = OC_EH_ERROR;
OCEntityHandlerRequest *request = NULL;
OC_LOG_V (INFO, TAG, "Inside entity handler - flags: 0x%x", flag);
if (flag & OC_REQUEST_FLAG)
{
OC_LOG(INFO, TAG, "Flag includes OC_REQUEST_FLAG");
if (entityHandlerRequest)
{
OC_LOG_V (INFO, TAG, "request query %s from client",
entityHandlerRequest->query);
OC_LOG_PAYLOAD (INFO, TAG, entityHandlerRequest->payload);
// Make deep copy of received request and queue it for slow processing
request = CopyRequest(entityHandlerRequest);
if (request)
{
OC_LOG(INFO, TAG, "Scheduling slow response for received request");
gRequestList.push_back(request);
// Indicate to the stack that this is a slow response
result = OC_EH_SLOW;
// Start the slow response alarm
alarm(SLOW_RESPONSE_DELAY_SEC);
}
else
{
OC_LOG(ERROR, TAG, "Error queuing request for slow response");
// Indicate to the stack that this is a slow response
result = OC_EH_ERROR;
}
}
else
{
OC_LOG(ERROR, TAG, "Invalid request");
result = OC_EH_ERROR;
}
}
return result;
}
开发者ID:HoTaeWang,项目名称:iotivity,代码行数:45,代码来源:ocserverslow.cpp
示例7: InitPutRequest
int InitPutRequest(OCQualityOfService qos)
{
std::ostringstream query;
//Get most recently inserted resource
const ResourceNode * resource = getResource();
if(!resource)
{
OC_LOG_V(ERROR, TAG, "Resource null, can't do PUT request\n");
return -1;
}
query << "coap://" << resource->ip << ":" << resource->port << resource->uri ;
OC_LOG_V(INFO, TAG,"Executing InitPutRequest, Query: %s", query.str().c_str());
return (InvokeOCDoResource(query, OC_REST_PUT, resource->connType,
((qos == OC_HIGH_QOS) ? OC_HIGH_QOS: OC_LOW_QOS),
putReqCB, NULL, 0));
}
开发者ID:sonicbison,项目名称:iotivity,代码行数:18,代码来源:occlientbasicops.cpp
示例8: discoveryReqCB
// This is a function called back when a device is discovered
OCStackApplicationResult discoveryReqCB(void* ctx, OCDoHandle handle,
OCClientResponse * clientResponse)
{
if (ctx == (void*) DEFAULT_CONTEXT_VALUE)
{
OC_LOG(INFO, TAG, "DISCOVER callback recvd");
}
if (!clientResponse)
{
OC_LOG_V(INFO, TAG, "discoveryReqCB received Null clientResponse");
}
OC_LOG_V(INFO, TAG, "StackResult: %s", getResult(clientResponse->result));
OC_LOG_PAYLOAD(INFO, clientResponse->payload);
responseAddr = clientResponse->devAddr;
switch(TEST_CASE)
{
OC_LOG_V(INFO, TAG, "TEST_CASE %u\n", TEST_CASE);
case TEST_GET_REQ_NON:
InitGetRequest(OC_LOW_QOS);
break;
case TEST_PUT_REQ_NON:
InitPutRequest(OC_LOW_QOS);
break;
case TEST_POST_REQ_NON:
InitPostRequest(OC_LOW_QOS);
break;
case TEST_DELETE_REQ_NON:
InitDeleteRequest(OC_LOW_QOS);
break;
case TEST_OBS_REQ_NON:
case TEST_OBS_REQ_NON_CANCEL_IMM:
InitObserveRequest(OC_LOW_QOS);
break;
default:
PrintUsage();
break;
}
SET_BUT_NOT_USED(handle);
return OC_STACK_KEEP_TRANSACTION;
}
开发者ID:chetan336,项目名称:iotivity,代码行数:45,代码来源:ocremoteaccessclient.cpp
示例9: registerResultForACLProvisioning
/**
* Internal Function to store results in result array during ACL provisioning.
*/
static void registerResultForACLProvisioning(ACLData_t *aclData,
OCStackResult stackresult)
{
OC_LOG_V(INFO, TAG, "Inside registerResultForACLProvisioning aclData->numOfResults is %d\n",
aclData->numOfResults);
memcpy(aclData->resArr[(aclData->numOfResults)].deviceId.id,
aclData->deviceInfo->doxm->deviceID.id, UUID_LENGTH);
aclData->resArr[(aclData->numOfResults)].res = stackresult;
++(aclData->numOfResults);
}
开发者ID:WojciechLuczkow,项目名称:iotivity,代码行数:13,代码来源:secureresourceprovider.c
示例10: getReqCB
OCStackApplicationResult getReqCB(void* ctx, OCDoHandle /*handle*/,
OCClientResponse * clientResponse)
{
if (ctx == (void*) DEFAULT_CONTEXT_VALUE)
{
OC_LOG(INFO, TAG, "<====Callback Context for GET received successfully====>");
}
else
{
OC_LOG(ERROR, TAG, "<====Callback Context for GET fail====>");
}
if (clientResponse)
{
OC_LOG_V(INFO, TAG, "StackResult: %s", getResult(clientResponse->result));
OC_LOG_V(INFO, TAG, "SEQUENCE NUMBER: %d", clientResponse->sequenceNumber);
OC_LOG_PAYLOAD(INFO, clientResponse->payload);
OC_LOG(INFO, TAG, ("=============> Get Response"));
if (clientResponse->numRcvdVendorSpecificHeaderOptions > 0 )
{
OC_LOG (INFO, TAG, "Received vendor specific options");
uint8_t i = 0;
OCHeaderOption * rcvdOptions = clientResponse->rcvdVendorSpecificHeaderOptions;
for (i = 0; i < clientResponse->numRcvdVendorSpecificHeaderOptions; i++)
{
if (((OCHeaderOption) rcvdOptions[i]).protocolID == OC_COAP_ID)
{
OC_LOG_V(INFO, TAG, "Received option with OC_COAP_ID and ID %u with",
((OCHeaderOption)rcvdOptions[i]).optionID );
OC_LOG_BUFFER(INFO, TAG, ((OCHeaderOption)rcvdOptions[i]).optionData,
MAX_HEADER_OPTION_DATA_LENGTH);
}
}
}
}
else
{
OC_LOG(ERROR, TAG, "<====GET Callback fail to receive clientResponse====>\n");
}
return OC_STACK_DELETE_TRANSACTION;
}
开发者ID:TianyouLi,项目名称:iotivity,代码行数:43,代码来源:occlientbasicops.cpp
示例11: InitGetRequest
int InitGetRequest(OCQualityOfService qos)
{
OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
std::ostringstream query;
query << (coapSecureResource ? "coaps://" : "coap://") << coapServerIP
<< ":" << coapServerPort << coapServerResource;
return (InvokeOCDoResource(query, OC_REST_GET, (qos == OC_HIGH_QOS)?
OC_HIGH_QOS:OC_LOW_QOS, getReqCB, NULL, 0));
}
开发者ID:prajoshpremdas,项目名称:iotivity,代码行数:10,代码来源:occlientbasicops.cpp
示例12: postReqCB
OCStackApplicationResult postReqCB(void *ctx, OCDoHandle handle, OCClientResponse *clientResponse)
{
if(ctx == (void*)DEFAULT_CONTEXT_VALUE)
{
OC_LOG(INFO, TAG, "Callback Context for POST recvd successfully");
}
if(clientResponse)
{
OC_LOG_V(INFO, TAG, "StackResult: %s", getResult(clientResponse->result));
OC_LOG_V(INFO, TAG, "JSON = %s =============> Post Response",
clientResponse->resJSONPayload);
}
else
{
OC_LOG_V(INFO, TAG, "postReqCB received Null clientResponse");
}
return OC_STACK_DELETE_TRANSACTION;
}
开发者ID:EmuxEvans,项目名称:iotivity,代码行数:19,代码来源:occlient.cpp
示例13: InitGetRequest
int InitGetRequest( struct cmd *command )
{
int queryLen = strlen( command->coapuri )+1;
char *query = malloc( queryLen );
OCStackResult result;
printf("query len=%d\n", queryLen);
OC_LOG_V(INFO, TAG, "\n\nExecuting %s", __func__);
snprintf( query, queryLen+1, "%s", command->coapuri );
OC_LOG_V(INFO, TAG, "query in InitGetRequest: %s", command->coapuri);
result = InvokeOCDoResource(query, OC_REST_GET, OC_HIGH_QOS, getReqCB, NULL, 0, command);
free(query);
return result;
}
开发者ID:WorksSystems,项目名称:wks_oic_raclient,代码行数:19,代码来源:main.c
示例14: ZigbeeDiscover
OCStackResult ZigbeeDiscover(PIPlugin_Zigbee * plugin)
{
OCStackResult result = OC_STACK_ERROR;
(void)plugin;
TWSetDiscoveryCallback(foundZigbeeCallback);
result = TWDiscover(NULL);
OC_LOG_V (DEBUG, TAG, "ZigbeeDiscover : Status = %d\n", result);
return result;
}
开发者ID:rzr,项目名称:iotivity-1,代码行数:10,代码来源:zigbee_wrapper.c
示例15: PutOwnershipInformation
static OCStackResult PutOwnershipInformation(OTMContext_t* otmCtx)
{
OC_LOG(DEBUG, TAG, "IN PutOwnershipInformation");
if(!otmCtx || !otmCtx->selectedDeviceInfo)
{
OC_LOG(ERROR, TAG, "Invailed parameters");
return OC_STACK_INVALID_PARAM;
}
OCProvisionDev_t* deviceInfo = otmCtx->selectedDeviceInfo;
char query[MAX_URI_LENGTH + MAX_QUERY_LENGTH] = {0};
if(!PMGenerateQuery(true,
deviceInfo->endpoint.addr, deviceInfo->securePort,
deviceInfo->connType,
query, sizeof(query), OIC_RSRC_DOXM_URI))
{
OC_LOG(ERROR, TAG, "PutOwnershipInformation : Failed to generate query");
return OC_STACK_ERROR;
}
OC_LOG_V(DEBUG, TAG, "Query=%s", query);
//OwnershipInformationHandler
OicSecOxm_t selOxm = deviceInfo->doxm->oxmSel;
OCSecurityPayload* secPayload = (OCSecurityPayload*)OICCalloc(1, sizeof(OCSecurityPayload));
if(!secPayload)
{
OC_LOG(ERROR, TAG, "Failed to memory allocation");
return OC_STACK_NO_MEMORY;
}
secPayload->base.type = PAYLOAD_TYPE_SECURITY;
secPayload->securityData = g_OTMDatas[selOxm].createOwnerTransferPayloadCB(otmCtx);
if (NULL == secPayload->securityData)
{
OICFree(secPayload);
OC_LOG(ERROR, TAG, "Error while converting doxm bin to json");
return OC_STACK_INVALID_PARAM;
}
OCCallbackData cbData;
cbData.cb = &OwnershipInformationHandler;
cbData.context = (void *)otmCtx;
cbData.cd = NULL;
OCStackResult res = OCDoResource(NULL, OC_REST_PUT, query, 0, (OCPayload*)secPayload,
deviceInfo->connType, OC_LOW_QOS, &cbData, NULL, 0);
if (res != OC_STACK_OK)
{
OC_LOG(ERROR, TAG, "OCStack resource error");
}
OC_LOG(DEBUG, TAG, "OUT PutOwnershipInformation");
return res;
}
开发者ID:keyfour,项目名称:iotivity,代码行数:55,代码来源:ownershiptransfermanager.c
示例16: constructResponse
//This function takes the request as an input and returns the response
//in JSON format.
OCRepPayload* constructResponse (OCEntityHandlerRequest *ehRequest)
{
LEDResource *currLEDResource = &LED;
OC_LOG(INFO, TAG, "Entering constructResponse");
if (ehRequest->resource == gLedInstance[0].handle)
{
OC_LOG(INFO, TAG, "handle 0");
currLEDResource = &gLedInstance[0];
gResourceUri = const_cast<char *>("a/led/0");
}
else if (ehRequest->resource == gLedInstance[1].handle)
{
OC_LOG(INFO, TAG, "handle 1");
currLEDResource = &gLedInstance[1];
gResourceUri = const_cast<char *>("a/led/1");
}
if(OC_REST_PUT == ehRequest->method)
{
if(ehRequest->payload && ehRequest->payload->type != PAYLOAD_TYPE_REPRESENTATION)
{
OC_LOG(ERROR, TAG, PCF("Incoming payload not a representation"));
return nullptr;
}
OCRepPayload *putPayload = reinterpret_cast<OCRepPayload*> (ehRequest->payload);
int64_t power;
bool state;
if (OCRepPayloadGetPropBool(putPayload, "state", &state))
{
currLEDResource->state = state;
}
if (OCRepPayloadGetPropInt (putPayload, "power", &power))
{
currLEDResource->power = power;
}
}
OCRepPayload *response = OCRepPayloadCreate();
if (!response)
{
OC_LOG_V(ERROR, TAG, "Memory allocation for response payload failed.");
}
OCRepPayloadSetUri (response, gResourceUri);
OCRepPayloadSetPropBool(response, "state", currLEDResource->state);
OCRepPayloadSetPropInt(response, "power", currLEDResource->power);
return response;
}
开发者ID:HoTaeWang,项目名称:iotivity,代码行数:57,代码来源:ocserverslow.cpp
示例17: discoveryReqCB
// This is a function called back when a device is discovered
OCStackApplicationResult discoveryReqCB(void* ctx, OCDoHandle handle,
OCClientResponse * clientResponse)
{
uint8_t remoteIpAddr[4];
uint16_t remotePortNu;
OC_LOG(INFO, TAG, "Callback Context for DISCOVER query recvd successfully");
if (clientResponse)
{
OC_LOG_V(INFO, TAG, "StackResult: %s", getResult(clientResponse->result));
OCDevAddrToIPv4Addr((OCDevAddr *) clientResponse->addr, remoteIpAddr,
remoteIpAddr + 1, remoteIpAddr + 2, remoteIpAddr + 3);
OCDevAddrToPort((OCDevAddr *) clientResponse->addr, &remotePortNu);
OC_LOG_V(INFO, TAG,
"Device =============> Discovered %s @ %d.%d.%d.%d:%d",
clientResponse->resJSONPayload, remoteIpAddr[0], remoteIpAddr[1],
remoteIpAddr[2], remoteIpAddr[3], remotePortNu);
if (parseClientResponse(clientResponse) != -1)
{
switch(TEST_CASE)
{
case TEST_NON_CON_OP:
InitGetRequest(OC_LOW_QOS);
InitPutRequest();
//InitPostRequest(OC_LOW_QOS);
break;
case TEST_CON_OP:
InitGetRequest(OC_HIGH_QOS);
InitPutRequest();
//InitPostRequest(OC_HIGH_QOS);
break;
}
}
}
return (UNICAST_DISCOVERY) ? OC_STACK_DELETE_TRANSACTION : OC_STACK_KEEP_TRANSACTION ;
}
开发者ID:prajoshpremdas,项目名称:iotivity,代码行数:43,代码来源:occlientbasicops.cpp
示例18: PutUpdateOperationMode
static OCStackResult PutUpdateOperationMode(OTMContext_t* otmCtx,
OicSecDpom_t selectedOperationMode)
{
OC_LOG(DEBUG, TAG, "IN PutUpdateOperationMode");
if(!otmCtx || !otmCtx->selectedDeviceInfo)
{
return OC_STACK_INVALID_PARAM;
}
OCProvisionDev_t* deviceInfo = otmCtx->selectedDeviceInfo;
char query[MAX_URI_LENGTH + MAX_QUERY_LENGTH] = {0};
if(!PMGenerateQuery(false,
deviceInfo->endpoint.addr, deviceInfo->endpoint.port,
deviceInfo->connType,
query, sizeof(query), OIC_RSRC_PSTAT_URI))
{
OC_LOG(ERROR, TAG, "PutUpdateOperationMode : Failed to generate query");
return OC_STACK_ERROR;
}
OC_LOG_V(DEBUG, TAG, "Query=%s", query);
deviceInfo->pstat->om = selectedOperationMode;
OCSecurityPayload* secPayload = (OCSecurityPayload*)OICCalloc(1, sizeof(OCSecurityPayload));
if(!secPayload)
{
OC_LOG(ERROR, TAG, "Failed to memory allocation");
return OC_STACK_NO_MEMORY;
}
secPayload->base.type = PAYLOAD_TYPE_SECURITY;
secPayload->securityData = BinToPstatJSON(deviceInfo->pstat);
if (NULL == secPayload->securityData)
{
OICFree(secPayload);
OC_LOG(ERROR, TAG, "Error while converting pstat bin to json");
return OC_STACK_INVALID_PARAM;
}
OCCallbackData cbData;
cbData.cb = &OperationModeUpdateHandler;
cbData.context = (void *)otmCtx;
cbData.cd = NULL;
OCStackResult res = OCDoResource(NULL, OC_REST_PUT, query, 0, (OCPayload*)secPayload,
deviceInfo->connType, OC_LOW_QOS, &cbData, NULL, 0);
if (res != OC_STACK_OK)
{
OC_LOG(ERROR, TAG, "OCStack resource error");
}
OC_LOG(DEBUG, TAG, "OUT PutUpdateOperationMode");
return res;
}
开发者ID:tienfuc,项目名称:iotivity-democlient-snap,代码行数:54,代码来源:ownershiptransfermanager.c
示例19: createLightResource
void createLightResource()
{
Light.state = false;
OCStackResult res = OCCreateResource(&Light.handle,
"core.light",
"oc.mi.def",
"/a/light",
OCEntityHandlerCb,
OC_DISCOVERABLE|OC_OBSERVABLE);
OC_LOG_V(INFO, TAG, "Created Light resource with result: %s", getResult(res));
}
开发者ID:prajoshpremdas,项目名称:iotivity,代码行数:11,代码来源:ocserver.cpp
示例20: createResource
void createResource()
{
OCStackResult res = OCCreateResource(&m_handle,
"SSManager.Sensor",
"oc.mi.def",
"/Tracker_Thing",
OCEntityHandlerCb,
OC_DISCOVERABLE | OC_OBSERVABLE);
OC_LOG_V(INFO, TAG, "Created PROXI resource with result: %s", getResult(res));
}
开发者ID:EmuxEvans,项目名称:iotivity,代码行数:11,代码来源:trackee.cpp
注:本文中的OC_LOG_V函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论