b42eee6a4ff1ee59a0dbeb99f8ca70a8992a016b
[apps/agl-service-can-low-level.git] / low-can-binding / utils / socket.hpp
1 #pragma once
2
3 /*
4  * Copyright (C) 2015, 2016 ,2017 "IoT.bzh"
5  * Author "Romain Forlot" <romain.forlot@iot.bzh>
6  * Author "Loïc Collignon" <loic.collignon@iot.bzh>
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *       http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #include <sys/socket.h>
21
22 #define INVALID_SOCKET -1
23
24 namespace utils
25 {
26         class socket_t
27         {
28         public:
29                 socket_t();
30                 socket_t(const socket_t&) = delete;
31                 socket_t(socket_t&&);
32                 ~socket_t();
33
34                 explicit operator bool() const;
35
36                 int open(int domain, int type, int protocol);
37                 int close();
38                 int setopt(int level, int optname, const void* optval, socklen_t optlen);
39                 int socket() const;
40                 int bind(const struct sockaddr* addr, socklen_t len);
41
42         private:
43                 int socket_;
44         };
45 }
46