TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / network / socket_messenger.h
1 /*
2  * Copyright © 2013-2014 Canonical Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 3 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
17  */
18
19 #ifndef ANBOX_NETWORK_SOCKET_MESSENGER_H_
20 #define ANBOX_NETWORK_SOCKET_MESSENGER_H_
21
22 #include <mutex>
23
24 #include "anbox/network/credentials.h"
25 #include "anbox/network/message_receiver.h"
26 #include "anbox/network/message_sender.h"
27
28 namespace anbox {
29 namespace network {
30 class SocketMessenger : public MessageSender, public MessageReceiver {
31  public:
32   virtual Credentials creds() const = 0;
33   virtual unsigned short local_port() const = 0;
34   virtual void set_no_delay() = 0;
35   virtual void close() = 0;
36 };
37 }  // namespace network
38 }  // namespace anbox
39
40 #endif