- 16 Feb, 2010 24 commits
-
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
Disable strict aliasing.. since gcc 4.4.3, there are many warnings/errors caused by strict aliasing.. and it's hard to get the code clean without using unions everywhere especially when dealing with sockaddr_storage and sockaddr_in* structures. Since this is a socket library mainly, and sockaddr was designed for aliasing, it's best to just disable strict aliasing for the lib
-
Youness Alaoui authored
-
Youness Alaoui authored
Always start the conn check timer and the keepalive timer, even if initially there are no freezed check
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
oups, correctly free the tcp clock/data when the component is freed, not only when the stream is manually removed through the API
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
Adding 'Since' gtk-doc tags to specify since which version each function has become available (for non 0.0.1 ones)
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
- 29 Dec, 2009 2 commits
-
-
Youness Alaoui authored
do not try to connect a tcp socket with no destination address to connect to. Fixes coverity check when dereferencing addr
-
Youness Alaoui authored
Keep the upnp and upnp-timeout properties available even if upnp is disabled during build. This is to prevent a break of the API from one build to another
-
- 04 Dec, 2009 3 commits
-
-
Youness Alaoui authored
-
Youness Alaoui authored
do not cast time_t and clock_t into unsigned long, on some systems (kfreebsd), it can lead to an error because of strict-aliasing
-
Youness Alaoui authored
use sizeof struct sockaddr_in instead of sizeof struct sockaddr to hopefully fix the bug with sendmsg on BSD systems
-
- 19 Nov, 2009 1 commit
-
-
Youness Alaoui authored
-
- 13 Nov, 2009 10 commits
-
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
-
Youness Alaoui authored
there's no need to use a memcpy for checking the username's validity in an incoming connectivity check
-
Youness Alaoui authored
-
Youness Alaoui authored
use g_strlcpy instead of strncpy and memcpy for the candidate foundation, because it makes sure we have a trailing null char in our string.
-