stkutil: Add Set Up Event List response builder

This commit is contained in:
Andrzej Zaborowski 2010-05-27 06:59:46 +02:00 committed by Denis Kenzior
parent ad97689b86
commit 139294c588
2 changed files with 3 additions and 0 deletions

View File

@ -3981,6 +3981,8 @@ unsigned int stk_pdu_from_response(const struct stk_response *response,
case STK_COMMAND_TYPE_PROVIDE_LOCAL_INFO:
ok = build_local_info(&builder, response);
break;
case STK_COMMAND_TYPE_SETUP_EVENT_LIST:
break;
default:
return 0;
};

View File

@ -1150,6 +1150,7 @@ struct stk_response {
struct stk_response_set_up_call set_up_call;
struct stk_response_generic polling_off;
struct stk_response_local_info provide_local_info;
struct stk_response_generic set_up_event_list;
};
void (*destructor)(struct stk_response *response);