diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-02-12 23:31:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-12 23:31:40 +0100 |
| commit | 70b9aa379d99c78f6db87344e3002808dac70bfa (patch) | |
| tree | 4f83bb38a0fe8b636640cb9b4eb0cd0b82a0b9c6 /drivers/unix/stream_peer_tcp_posix.h | |
| parent | 117a83fcb916cb02777dea73fb642216fd2e1d79 (diff) | |
| parent | 5dc7c920bf1c4bb160d39e13ad6136d80badd7ae (diff) | |
Merge pull request #7581 from Faless/v6_wild_bind
TCP/UDP listen bind to address and bugfixes
Diffstat (limited to 'drivers/unix/stream_peer_tcp_posix.h')
| -rw-r--r-- | drivers/unix/stream_peer_tcp_posix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/unix/stream_peer_tcp_posix.h b/drivers/unix/stream_peer_tcp_posix.h index d33883b159..7f8d90a448 100644 --- a/drivers/unix/stream_peer_tcp_posix.h +++ b/drivers/unix/stream_peer_tcp_posix.h @@ -46,7 +46,7 @@ protected: Error _block(int p_sockfd, bool p_read, bool p_write) const; - Error _poll_connection(bool p_block) const; + Error _poll_connection() const; IP_Address peer_host; int peer_port; @@ -68,7 +68,7 @@ public: virtual int get_available_bytes() const; - void set_socket(int p_sockfd, IP_Address p_host, int p_port, IP::Type p_ip_type); + void set_socket(int p_sockfd, IP_Address p_host, int p_port, IP::Type p_sock_type); virtual IP_Address get_connected_host() const; virtual uint16_t get_connected_port() const; |