~ubuntu-branches/ubuntu/quantal/virtualbox/quantal

« back to all changes in this revision

Viewing changes to src/VBox/Devices/Network/slirp/socket.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2012-04-05 12:41:55 UTC
  • mfrom: (3.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20120405124155-i7b39tv5ddwhubbe
Tags: 4.1.12-dfsg-2
* Upstream has replaced the 4.1.12 tarball with a new one that fixes a
  crash when creating host only interfaces. (Closes: #667460)
  - Add 36-tarball-respin.patch which contains the diff between the old
    and the new tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
#endif
106
106
    /* required for port-forwarding */
107
107
    struct libalias *so_la;
 
108
    /* libalias might attach the socket and we want to notify libalias we're freeing it */
 
109
    void *so_pvLnk;
108
110
};
109
111
 
 
112
/* this function inform libalias about socket close */
 
113
void slirpDeleteLinkSocket(void *pvLnk);
 
114
 
110
115
#ifdef VBOX_WITH_SLIRP_MT
111
116
# define SOCKET_LOCK(so)                                                \
112
117
    do {                                                                \