Change-Id: I731fa1f0d39a246aa601ced91204cbe1b94c02c4
Signed-off-by: Jihoon Jung <jh8801.jung@samsung.com>
static bool net_nfc_emul_controller_llcp_get_remote_socket_info (net_nfc_target_handle_s* handle, net_nfc_llcp_socket_t socket, net_nfc_llcp_socket_option_s * option, net_nfc_error_e* result)
{
+ /* In llcp specification ver 1.1, default miu size is 128 */
+ const uint16_t default_miu = 128;
+
if (result == NULL) {
return false;
}
DEBUG_EMUL_BEGIN();
+ option->miu = default_miu;
+
DEBUG_EMUL_END();
return true;