Add UDSHelpers (Helpers for Unix Domain Sockets)
[platform/core/test/security-tests.git] / src / common / uds.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file        uds.h
18  * @author      Aleksander Zdyb <a.zdyb@partner.samsung.com>
19  * @version     1.0
20  * @brief       Helpers for Unix Domain Sockets
21  */
22
23 #ifndef TESTS_COMMON_UDS_H_
24 #define TESTS_COMMON_UDS_H_
25
26 #include <string>
27 #include <sys/un.h>
28
29 namespace UDSHelpers {
30     int createServer(const struct sockaddr_un *sockaddr);
31     int createClient(const struct sockaddr_un *sockaddr);
32     int acceptClient(int sock);
33     void waitForDisconnect(int sock);
34     struct sockaddr_un makeAbstractAddress(const std::string &path);
35 };
36
37 #endif // TESTS_COMMON_UDS_H_