summaryrefslogtreecommitdiff
path: root/socket
Commit message (Expand)AuthorAgeFilesLines
* Change all stun_XXX_t enums/structs into StunXxx to have a common naming conv...Youness Alaoui2009-02-161-7/+7
* Port libnice agent to the StunMessageReturn APIYouness Alaoui2009-01-301-19/+25
* Port libnice agent to the StunUsageTimerReturn APIYouness Alaoui2009-01-301-5/+4
* http.h needs to be installed tooYouness Alaoui2009-01-271-1/+1
* remove unused COMMON_LDADDYouness Alaoui2009-01-141-2/+0
* Move tests from agent and socket, into its own tests directory.. fixes issue ...Youness Alaoui2009-01-142-98/+0
* no declarations after code.. this way it will build on windowsYouness Alaoui2009-01-081-1/+1
* Adding HTTP proxy supportYouness Alaoui2008-12-194-0/+469
* remove useless agent in socks5 proxy, fix copyright and return FALSE in send,...Youness Alaoui2008-12-172-16/+12
* Add support for SOCKS5 proxy serversYouness Alaoui2008-12-104-1/+486
* return an error if we couldn't negociate the ssl handshakeYouness Alaoui2008-12-101-0/+1
* free the to_be_sent queue if we get closed and the queue is not emptyYouness Alaoui2008-12-101-1/+13
* use g_slice_new0 instead of g_slice_newYouness Alaoui2008-12-102-2/+2
* recv returns 0 if the socket was shutdown, so we must return -1 so the agent ...Youness Alaoui2008-12-091-0/+6
* Socket layer refactorising and adding of tcp-bsd, pseudossl, and moved the tc...Youness Alaoui2008-12-0812-927/+1266
* do not unref if it's NULL.Youness Alaoui2008-11-241-3/+6
* fix crash with tcp turn, we should get our local binding addressYouness Alaoui2008-11-191-0/+14
* fix udp-turn closesocket for windows. use sockfd since sock->fileno is not ye...Youness Alaoui2008-11-191-2/+2
* use the correct len for tcp-turn and memset the sockaddr to 0Youness Alaoui2008-11-171-1/+2
* Use the correct size for sockaddr_storage, otherwise it won't work on mac os ...Youness Alaoui2008-11-171-4/+9
* use nice_address_new and nice_address_free instead of g_new0 and g_freeYouness Alaoui2008-11-121-2/+2
* make nice_socket_send return a boolean so we can know whether or not the send...Youness Alaoui2008-11-043-10/+6
* Replace all references to 3489BIS into RFC 5389 as it has just been releasedYouness Alaoui2008-11-031-1/+1
* replace close by closesocket for windowsYouness Alaoui2008-11-032-1/+22
* Fix includes for win32 compilationYouness Alaoui2008-11-033-4/+11
* Add an else to HAVE_CONFIG_H in order to define NICEAPI_EXPORT. Also removed ...Youness Alaoui2008-11-032-6/+6
* Move address into the agent's dirYouness Alaoui2008-10-301-2/+1
* in tcp-turn, change all write/read into proper send/recv callsYouness Alaoui2008-10-291-8/+8
* use WSAGetLastError instead of errnoYouness Alaoui2008-10-291-6/+30
* add correct includes and define close as closesocket for windowsYouness Alaoui2008-10-291-0/+10
* EINPROGRESS is called WSAEINPROGRESS on windows...Youness Alaoui2008-10-281-0/+4
* use socklen_t where needed, and cast it to size_t as it defined as an int in ...Youness Alaoui2008-10-282-3/+3
* remove unnecessary inclusion of socket files in some files, and make glib inc...Youness Alaoui2008-10-284-6/+0
* Fix for make distcheck to workYouness Alaoui2008-10-272-3/+4
* if we have EAGAIN when sending the buffer, also add the padding to the list o...Youness Alaoui2008-10-231-9/+13
* implement automatically resending messages when the data can't be sentYouness Alaoui2008-10-232-43/+92
* tcp-turn.h is now needed as an installable include fileYouness Alaoui2008-10-231-1/+1
* Correctly set the inbound address of the socket to the server address for tcp...Youness Alaoui2008-10-231-0/+4
* add tcp-turn to the socket.h includeYouness Alaoui2008-10-221-0/+1
* move includes and add include of the agent because tcp-turn needs the NiceAge...Youness Alaoui2008-10-222-4/+7
* Port tcp-turn to the new NiceSocket APIYouness Alaoui2008-10-223-148/+108
* Add tcp-turn by Olivier CreteYouness Alaoui2008-10-202-0/+462
* make udp relay socket modify the agent's socketptr. Also make sure we try to ...Youness Alaoui2008-10-162-2/+8
* when the turn channel is locked for gtalk or msn, send to the server address,...Youness Alaoui2008-10-091-1/+2
* Correctly support stale nonce, and unauthorized errors, for the channel bind ...Youness Alaoui2008-10-081-14/+14
* check that we don't infinitely loop on authentication when channel bind error...Youness Alaoui2008-10-081-22/+71
* Correctly free whatever we createdYouness Alaoui2008-10-081-2/+17
* Correct support timing out for tcp sockets tooYouness Alaoui2008-10-081-2/+3
* Add multiple bindings to a list and process them once we're done with the cur...Youness Alaoui2008-10-081-4/+34
* implement retransmissions and timeout for msn set-active-destinationYouness Alaoui2008-10-081-14/+25