~ubuntu-branches/ubuntu/maverick/libtorrent-rasterbar/maverick

« back to all changes in this revision

Viewing changes to include/libtorrent/aux_/session_impl.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Cristian Greco
  • Date: 2009-05-13 12:08:59 UTC
  • mfrom: (3.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090513120859-b5qqlwi43aai3pq3
Tags: 0.14.3-1
* New Upstream Version
  - new package libtorrent-rasterbar3 (bump up library soname).
* debian/control:
  - add Vcs-* stuff (switch to git-buildpackage) and bump up
    Standards-Version to 3.8.1 (no changes required);
  - build-depends on debhelper (>= 7.0.50) and use override_dh_command;
  - move -dbg package to the new 'debug' section;
  - build-depends on autotools-dev and overwrite config.{sub,guess} with a
    recent version in debian/rules.
  - build-depends on quilt and python-docutils:
    + debian/patches/fix_html_docs.patch: fix html documentation for offline
      browsing and add another missing doc file;
    + rebuild docs at build time in debian/rules;
* debian/example.makefile: install a simple makefile for example programs
  included in -doc package.
* debian/rules, debian/python-libtorrent.install: don't rely on hardcoded
  python version, use --install-layout=deb when building python bindings,
  and install to '*-packages' instead of 'site-packages' (this should
  prepare for python2.6 and minimize Ubuntu diff).

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
                        // this will return one of the IPv6 addresses on this
151
151
                        // machine, otherwise just an empty endpoint
152
152
                        tcp::endpoint get_ipv6_interface() const;
 
153
                        tcp::endpoint get_ipv4_interface() const;
153
154
 
154
155
                        void async_accept(boost::shared_ptr<socket_acceptor> const& listener);
155
156
                        void on_incoming_connection(boost::shared_ptr<socket_type> const& s
414
415
                        // this is one of the non local IPv6 interfaces
415
416
                        // on this machine
416
417
                        tcp::endpoint m_ipv6_interface;
 
418
                        tcp::endpoint m_ipv4_interface;
417
419
                        
418
420
                        struct listen_socket_t
419
421
                        {