* Sockets now inherit from WeakReferenceable.

* This fixes the problem when a socket changes something with regards to its
  parent.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30000 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-04-07 16:07:15 +00:00
parent 0228ef3608
commit 1111232758
7 changed files with 201 additions and 114 deletions
@@ -27,7 +27,8 @@ stack_interface_close(net_socket* socket)
static status_t
stack_interface_free(net_socket* socket)
{
return gNetSocketModule.free(socket);
gNetSocketModule.free(socket);
return B_OK;
}