~ubuntu-branches/ubuntu/wily/cxxtools/wily-proposed

« back to all changes in this revision

Viewing changes to src/tcpsocketimpl.h

  • Committer: Package Import Robot
  • Author(s): Kari Pahula
  • Date: 2012-04-28 10:30:29 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120428103029-qc8v0sb4yb8h1542
Tags: 2.1-1
* New upstream release (SONAME 8)
  - Removed patch gcc4.7_ftbfs_fix since upstream source is GCC 4.7 safe.
  - Patches iconvstream_size_t_fix, configure.in_fixes and
    arm_gcc4.6_ftbfs_fix removed since they have been implemented in
    upstream source.
* Standards-Version 3.9.3.
* Use dh-autoreconf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#include <sys/socket.h>
39
39
#include <sys/poll.h>
40
40
#include <sys/time.h>
 
41
#include <netinet/in.h>
41
42
#include <unistd.h>
42
43
 
43
44
namespace cxxtools
77
78
        std::pair<int, const char*> _connectResult;
78
79
 
79
80
    public:
80
 
        TcpSocketImpl(TcpSocket& socket);
 
81
        explicit TcpSocketImpl(TcpSocket& socket);
81
82
 
82
83
        ~TcpSocketImpl();
83
84