Ported messages from gear racing controller
[apps/native/gear-racing-car.git] / src / messages / message_keep_alive.c
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Flora License, Version 1.1 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "messages/message_keep_alive.h"
18
19 void message_keep_alive_init(message_keep_alive_t *message)
20 {
21         message_base_init(&message->base);
22         message_set_type(&message->base, MESSAGE_KEEP_ALIVE);
23 }
24
25 void message_keep_alive_destroy(message_keep_alive_t *message)
26 {
27         message_base_destroy(&message->base);
28 }
29
30 int message_keep_alive_deserialize(message_keep_alive_t *message, reader_t *reader)
31 {
32         return message_base_deserialize(&message->base, reader);
33 }
34
35 int message_keep_alive_serialize(message_keep_alive_t *message, writer_t *writer)
36 {
37         return message_base_serialize(&message->base, writer);
38 }