Kaa client C SDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
kaa_user_private.h
Go to the documentation of this file.
1 /*
2  * Copyright 2014-2016 CyberVision, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (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://www.apache.org/licenses/LICENSE-2.0
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 #ifndef KAA_USER_PRIVATE_H
18 #define KAA_USER_PRIVATE_H
19 
20 #include <kaa_user.h>
21 #include <kaa_status.h>
22 #include <kaa_channel_manager.h>
23 #include <utilities/kaa_log.h>
24 #include <kaa_platform_utils.h>
25 
27  kaa_channel_manager_t *channel_manager, kaa_logger_t *logger);
28 
30 
31 kaa_error_t kaa_user_request_get_size(kaa_user_manager_t *self, size_t *expected_size);
33 kaa_error_t kaa_user_handle_server_sync(kaa_user_manager_t *self, kaa_platform_message_reader_t *reader, uint16_t extension_options, size_t extension_length);
34 
35 #endif /* KAA_USER_PRIVATE_H */
User defined channels manager for Kaa C SDK.
Definition: kaa_platform_utils.h:40
void kaa_user_manager_destroy(kaa_user_manager_t *user_manager)
kaa_error_t kaa_user_request_get_size(kaa_user_manager_t *self, size_t *expected_size)
kaa_error_t kaa_user_request_serialize(kaa_user_manager_t *self, kaa_platform_message_writer_t *writer)
kaa_error_t
Definition: kaa_error.h:31
Definition: kaa_platform_utils.h:33
struct kaa_logger_t kaa_logger_t
Definition: kaa_log.h:68
struct kaa_user_manager_t kaa_user_manager_t
Definition: kaa_user.h:44
kaa_error_t kaa_user_handle_server_sync(kaa_user_manager_t *self, kaa_platform_message_reader_t *reader, uint16_t extension_options, size_t extension_length)
struct kaa_channel_manager_t kaa_channel_manager_t
Definition: kaa_channel_manager.h:42
Simple logger for Kaa C Endpoint.
Definition: kaa_status.h:36
kaa_error_t kaa_user_manager_create(kaa_user_manager_t **user_manager_p, kaa_status_t *status, kaa_channel_manager_t *channel_manager, kaa_logger_t *logger)
Endpoint-to-user association management for Kaa C SDK.