From: hyuna0213.jo Date: Mon, 14 Sep 2015 08:20:25 +0000 (+0900) Subject: modify the OCTransportAdapter structure in RI X-Git-Tag: 1.2.0+RC1~1086^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad47940901782b1e54c14b416adbcc1a9d50092b;p=platform%2Fupstream%2Fiotivity.git modify the OCTransportAdapter structure in RI currently if RA and TCP are together used, there is a compile issue. so I fixed the issue to build iotivity. Change-Id: I844deb28afc1556d7faa9c33ac4062550d9e223c Signed-off-by: hyuna0213.jo Reviewed-on: https://gerrit.iotivity.org/gerrit/2507 Tested-by: jenkins-iotivity Reviewed-by: Patrick Lankswert --- diff --git a/resource/csdk/stack/include/octypes.h b/resource/csdk/stack/include/octypes.h index 4c702be..22ce6b1 100644 --- a/resource/csdk/stack/include/octypes.h +++ b/resource/csdk/stack/include/octypes.h @@ -293,12 +293,12 @@ typedef enum #ifdef RA_ADAPTER /**Remote Access over XMPP.*/ - OC_ADAPTER_REMOTE_ACCESS = (1 << 3) + OC_ADAPTER_REMOTE_ACCESS = (1 << 3), #endif #ifdef TCP_ADAPTER /** CoAP over TCP.*/ - OC_ADAPTER_TCP = (1 << 4) + OC_ADAPTER_TCP = (1 << 4) #endif } OCTransportAdapter;