GNOME Bugzilla – Bug 668101
[0.11] [rtsp] Impossible to use GstRTSPWatch on Windows
Last modified: 2013-07-17 13:10:35 UTC
On Windows it's not allowed to use g_poll() on sockets. For the GSource that is created here this is done though. In 0.11 all the network code is ported to GIO so it might be possible to use the GSocketSource as child sources of the GstRTSPWatch here. (On Windows poll() does not work on sockets but WSAWaitForMultipleEvents() or something like that has to be used)
This is not only a problem with 0.11 but also with 0.10 btw, much harder to fix in 0.10 though.
all those structures are nicely hidden, it can be done without breaking API/ABI. removing blocker.
Works in 1.0 thanks to using GSocket. Just various bugs around that which are caused by GSocket it seems