~ubuntu-branches/debian/experimental/libtorrent/experimental

« back to all changes in this revision

Viewing changes to src/net/listen.cc

  • Committer: Bazaar Package Importer
  • Author(s): Dmitry E. Oboukhov
  • Date: 2009-05-09 20:27:09 UTC
  • mfrom: (1.3.1 upstream) (6.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20090509202709-2ox2anzvlwyqsm13
Tags: 0.12.4+tit-1
* Fixed incorrect merge of previous upload, closes: #527949,
  this version is really 0.12.4.
* Now we use tar-in-tar build system (added +tit as suffix into version).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// libTorrent - BitTorrent library
2
 
// Copyright (C) 2005-2007, Jari Sundell
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 as published by
6
 
// the Free Software Foundation; either version 2 of the License, or
7
 
// (at your option) any later version.
8
 
// 
9
 
// This program is distributed in the hope that it will be useful,
10
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
// GNU General Public License for more details.
13
 
// 
14
 
// You should have received a copy of the GNU General Public License
15
 
// along with this program; if not, write to the Free Software
16
 
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
//
18
 
// In addition, as a special exception, the copyright holders give
19
 
// permission to link the code of portions of this program with the
20
 
// OpenSSL library under certain conditions as described in each
21
 
// individual source file, and distribute linked combinations
22
 
// including the two.
23
 
//
24
 
// You must obey the GNU General Public License in all respects for
25
 
// all of the code used other than OpenSSL.  If you modify file(s)
26
 
// with this exception, you may extend this exception to your version
27
 
// of the file(s), but you are not obligated to do so.  If you do not
28
 
// wish to do so, delete this exception statement from your version.
29
 
// If you delete this exception statement from all source files in the
30
 
// program, then also delete it here.
31
 
//
32
 
// Contact:  Jari Sundell <jaris@ifi.uio.no>
33
 
//
34
 
//           Skomakerveien 33
35
 
//           3185 Skoppum, NORWAY
36
 
 
37
 
#include "config.h"
38
 
 
39
 
#include <unistd.h>
40
 
#include <arpa/inet.h>
41
 
#include <netinet/in.h>
42
 
#include <rak/socket_address.h>
43
 
#include <sys/socket.h>
44
 
 
45
 
#include "torrent/exceptions.h"
46
 
#include "torrent/connection_manager.h"
47
 
#include "torrent/poll.h"
48
 
 
49
 
#include "listen.h"
50
 
#include "manager.h"
51
 
 
52
 
namespace torrent {
53
 
 
54
 
bool
55
 
Listen::open(uint16_t first, uint16_t last, const rak::socket_address* bindAddress) {
56
 
  close();
57
 
 
58
 
  if (first == 0 || last == 0 || first > last)
59
 
    throw input_error("Tried to open listening port with an invalid range.");
60
 
 
61
 
  if (bindAddress->family() != rak::socket_address::af_inet &&
62
 
      bindAddress->family() != rak::socket_address::af_inet6)
63
 
    throw input_error("Listening socket must be bound to an inet or inet6 address.");
64
 
 
65
 
  if (!get_fd().open_stream() ||
66
 
      !get_fd().set_nonblock() ||
67
 
      !get_fd().set_reuse_address(true))
68
 
    throw resource_error("Could not allocate socket for listening.");
69
 
 
70
 
  rak::socket_address sa;
71
 
  sa.copy(*bindAddress, bindAddress->length());
72
 
 
73
 
  for (uint16_t i = first; i <= last; ++i) {
74
 
    sa.set_port(i);
75
 
 
76
 
    if (get_fd().bind(sa) && get_fd().listen(50)) {
77
 
      m_port = i;
78
 
 
79
 
      manager->connection_manager()->inc_socket_count();
80
 
 
81
 
      manager->poll()->open(this);
82
 
      manager->poll()->insert_read(this);
83
 
      manager->poll()->insert_error(this);
84
 
 
85
 
      return true;
86
 
    }
87
 
  }
88
 
 
89
 
  // This needs to be done if local_error is thrown too...
90
 
  get_fd().close();
91
 
  get_fd().clear();
92
 
 
93
 
  return false;
94
 
}
95
 
 
96
 
void Listen::close() {
97
 
  if (!get_fd().is_valid())
98
 
    return;
99
 
 
100
 
  manager->poll()->remove_read(this);
101
 
  manager->poll()->remove_error(this);
102
 
  manager->poll()->close(this);
103
 
 
104
 
  manager->connection_manager()->dec_socket_count();
105
 
 
106
 
  get_fd().close();
107
 
  get_fd().clear();
108
 
  
109
 
  m_port = 0;
110
 
}
111
 
  
112
 
void
113
 
Listen::event_read() {
114
 
  rak::socket_address sa;
115
 
  SocketFd fd;
116
 
 
117
 
  while ((fd = get_fd().accept(&sa)).is_valid())
118
 
    m_slotIncoming(fd, sa);
119
 
}
120
 
 
121
 
void
122
 
Listen::event_write() {
123
 
  throw internal_error("Listener does not support write().");
124
 
}
125
 
 
126
 
void
127
 
Listen::event_error() {
128
 
  throw internal_error("Listener port received an error event.");
129
 
}
130
 
 
131
 
}