4cb12acd9d70e21d4e3d735ee3889ddd6099343f
[platform/core/convergence/service-adaptor.git] / server / sal_auth.c
1 /*
2  * Service Adaptor
3  *
4  * Copyright (c) 2014 - 2015 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include <glib.h>
21
22 #include "sal_auth.h"
23 #include "service_adaptor_internal.h"
24
25 //******************************************************************************
26 //* Global variables and defines
27 //******************************************************************************
28
29 //******************************************************************************
30 //* Private interface
31 //******************************************************************************
32
33 //******************************************************************************
34 //* Private interface definition
35 //******************************************************************************
36
37 //******************************************************************************
38 //* Public interface definition
39 //******************************************************************************
40
41 auth_adaptor_h sal_auth_create_handle()
42 {
43         auth_adaptor_h auth_adaptor = auth_adaptor_create();
44
45         return auth_adaptor;
46 }
47
48 auth_adaptor_listener_h sal_auth_register_listener(auth_adaptor_h auth)
49 {
50         int ret = SERVICE_ADAPTOR_ERROR_NONE;
51
52         auth_adaptor_listener_h listener =
53                         (auth_adaptor_listener_h) g_malloc0(sizeof(auth_adaptor_listener_s));
54
55         ret = auth_adaptor_register_listener(auth, listener);
56
57         if (SERVICE_ADAPTOR_ERROR_NONE != ret)
58         {
59                 SAL_FREE(listener);
60         }
61
62         return listener;
63 }