mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-19 19:38:57 -04:00
Massive commit - changing from sockaddr_in => sockaddr_storage.
In preparation for making RS support IPv6. NB: This breaks the build of retroshare-gui, as the sockaddr_storage_xxx fns are only defined as prototypes for now. All the aux libraries like udp / stun / tcponudp / dht have still to be converted. These changes will probably break various things and need to be tested thoroughly. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.6-initdev@6735 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
fd071161bf
commit
6290d8fed9
66 changed files with 1182 additions and 1046 deletions
|
@ -193,7 +193,7 @@ public:
|
|||
virtual ~NetBinDummy() { return; }
|
||||
|
||||
// Net Interface
|
||||
virtual int connect(struct sockaddr_in raddr);
|
||||
virtual int connect(const struct sockaddr_storage &raddr);
|
||||
virtual int listen();
|
||||
virtual int stoplistening();
|
||||
virtual int disconnect();
|
||||
|
@ -204,7 +204,7 @@ virtual bool connect_parameter(uint32_t type, uint32_t value)
|
|||
(void) value; /* suppress unused parameter warning */
|
||||
return false;
|
||||
}
|
||||
virtual int getConnectAddress(struct sockaddr_in &raddr)
|
||||
virtual int getConnectAddress(struct sockaddr_storage &raddr)
|
||||
{
|
||||
(void) raddr; /* suppress unused parameter warning */
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue