summaryrefslogtreecommitdiffstats
path: root/drivers/unix/net_socket_posix.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Remove socket_helper.h after NetSocket refactorFabio Alessandrelli2018-09-281-0/+3
|
* Properly initialize Winsock on startupFabio Alessandrelli2018-09-131-0/+1
| | | | Also fix typo in _get_last_error which caused Winsock connect to fail.
* New NetSocket interface, BSD/Win implementationFabio Alessandrelli2018-09-121-0/+97
Unified BSD and Winsock sockets into a single implementation of a generic NetSocket interface. This is some ground work for few network improvements: - Reuse as much code as possible between Posix and Windows. - Provide a single point of implementation for exotic sdks (consoles). - Provide platform agnostic StreamPeerTCP and PacketPeerUDP in core. - Implement connect for UDP allowing for DTLS implementation.