~ubuntu-branches/debian/experimental/kopete/experimental

« back to all changes in this revision

Viewing changes to protocols/jabber/libjingle/talk/p2p/base/tcpport.h

  • Committer: Package Import Robot
  • Author(s): Maximiliano Curia
  • Date: 2015-02-24 11:32:57 UTC
  • mfrom: (1.1.41 vivid)
  • Revision ID: package-import@ubuntu.com-20150224113257-gnupg4v7lzz18ij0
Tags: 4:14.12.2-1
* New upstream release (14.12.2).
* Bump Standards-Version to 3.9.6, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * libjingle
 
3
 * Copyright 2004--2005, Google Inc.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions are met:
 
7
 *
 
8
 *  1. Redistributions of source code must retain the above copyright notice,
 
9
 *     this list of conditions and the following disclaimer.
 
10
 *  2. Redistributions in binary form must reproduce the above copyright notice,
 
11
 *     this list of conditions and the following disclaimer in the documentation
 
12
 *     and/or other materials provided with the distribution.
 
13
 *  3. The name of the author may not be used to endorse or promote products
 
14
 *     derived from this software without specific prior written permission.
 
15
 *
 
16
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 
17
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 
18
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
 
19
 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
20
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
21
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 
22
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 
23
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 
24
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
25
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
26
 */
 
27
 
 
28
#ifndef TALK_P2P_BASE_TCPPORT_H_
 
29
#define TALK_P2P_BASE_TCPPORT_H_
 
30
 
 
31
#include <string>
 
32
#include <list>
 
33
#include "talk/base/asyncpacketsocket.h"
 
34
#include "talk/p2p/base/port.h"
 
35
 
 
36
namespace cricket {
 
37
 
 
38
class TCPConnection;
 
39
 
 
40
extern const char LOCAL_PORT_TYPE[];  // type of TCP ports
 
41
 
 
42
// Communicates using a local TCP port.
 
43
//
 
44
// This class is designed to allow subclasses to take advantage of the
 
45
// connection management provided by this class.  A subclass should take of all
 
46
// packet sending and preparation, but when a packet is received, it should
 
47
// call this TCPPort::OnReadPacket (3 arg) to dispatch to a connection.
 
48
class TCPPort : public Port {
 
49
 public:
 
50
  static TCPPort* Create(talk_base::Thread* thread,
 
51
                         talk_base::PacketSocketFactory* factory,
 
52
                         talk_base::Network* network,
 
53
                         const talk_base::IPAddress& ip,
 
54
                         int min_port, int max_port,
 
55
                         bool allow_listen) {
 
56
    TCPPort* port = new TCPPort(thread, factory, network,
 
57
                                ip, min_port, max_port, allow_listen);
 
58
    if (!port->Init()) {
 
59
      delete port;
 
60
      port = NULL;
 
61
    }
 
62
    return port;
 
63
  }
 
64
  virtual ~TCPPort();
 
65
 
 
66
  virtual Connection* CreateConnection(const Candidate& address,
 
67
                                       CandidateOrigin origin);
 
68
 
 
69
  virtual void PrepareAddress();
 
70
 
 
71
  virtual int GetOption(talk_base::Socket::Option opt, int* value);
 
72
  virtual int SetOption(talk_base::Socket::Option opt, int value);
 
73
  virtual int GetError();
 
74
 
 
75
 protected:
 
76
  TCPPort(talk_base::Thread* thread, talk_base::PacketSocketFactory* factory,
 
77
          talk_base::Network* network, const talk_base::IPAddress& ip,
 
78
          int min_port, int max_port, bool allow_listen);
 
79
  bool Init();
 
80
 
 
81
  // Handles sending using the local TCP socket.
 
82
  virtual int SendTo(const void* data, size_t size,
 
83
                     const talk_base::SocketAddress& addr, bool payload);
 
84
 
 
85
  // Accepts incoming TCP connection.
 
86
  void OnNewConnection(talk_base::AsyncPacketSocket* socket,
 
87
                       talk_base::AsyncPacketSocket* new_socket);
 
88
 
 
89
 private:
 
90
  struct Incoming {
 
91
    talk_base::SocketAddress addr;
 
92
    talk_base::AsyncPacketSocket* socket;
 
93
  };
 
94
 
 
95
  talk_base::AsyncPacketSocket* GetIncoming(
 
96
      const talk_base::SocketAddress& addr, bool remove = false);
 
97
 
 
98
  // Receives packet signal from the local TCP Socket.
 
99
  void OnReadPacket(talk_base::AsyncPacketSocket* socket,
 
100
                    const char* data, size_t size,
 
101
                    const talk_base::SocketAddress& remote_addr);
 
102
 
 
103
  void OnAddressReady(talk_base::AsyncPacketSocket* socket,
 
104
                      const talk_base::SocketAddress& address);
 
105
 
 
106
  // TODO: Is this still needed?
 
107
  bool incoming_only_;
 
108
  bool allow_listen_;
 
109
  talk_base::AsyncPacketSocket* socket_;
 
110
  int error_;
 
111
  std::list<Incoming> incoming_;
 
112
 
 
113
  friend class TCPConnection;
 
114
};
 
115
 
 
116
class TCPConnection : public Connection {
 
117
 public:
 
118
  // Connection is outgoing unless socket is specified
 
119
  TCPConnection(TCPPort* port, const Candidate& candidate,
 
120
                talk_base::AsyncPacketSocket* socket = 0);
 
121
  virtual ~TCPConnection();
 
122
 
 
123
  virtual int Send(const void* data, size_t size);
 
124
  virtual int GetError();
 
125
 
 
126
  talk_base::AsyncPacketSocket* socket() { return socket_; }
 
127
 
 
128
 private:
 
129
  void OnConnect(talk_base::AsyncPacketSocket* socket);
 
130
  void OnClose(talk_base::AsyncPacketSocket* socket, int error);
 
131
  void OnReadPacket(talk_base::AsyncPacketSocket* socket,
 
132
                    const char* data, size_t size,
 
133
                    const talk_base::SocketAddress& remote_addr);
 
134
 
 
135
  talk_base::AsyncPacketSocket* socket_;
 
136
  int error_;
 
137
 
 
138
  friend class TCPPort;
 
139
};
 
140
 
 
141
}  // namespace cricket
 
142
 
 
143
#endif  // TALK_P2P_BASE_TCPPORT_H_