summaryrefslogtreecommitdiffstats
path: root/modules/gdnative/net
Commit message (Collapse)AuthorAgeFilesLines
* Add default values to the editor help, docs, and generated RSTBojidar Marinov2019-06-271-0/+2
| | | | | Also, make spacing of "=" in the editor help a bit more consistent. Closes #16086
* Made use of semicolons more consitent, fixed formattingJohnJLight2019-06-192-2/+2
|
* WebRTC refactor. Data channels, STUN/TURN support.Fabio Alessandrelli2019-05-161-4/+19
| | | | | | | | | | | | | | | A big refactor to the WebRTC module. API is now considered quite stable. Highlights: - Renamed `WebRTCPeer` to `WebRTCPeerConnection`. - `WebRTCPeerConnection` no longer act as `PacketPeer`, it only handle the connection itself (a bit like `TCP_Server`) - Added new `WebRTCDataChannel` class which inherits from `PacketPeer` to handle data transfer. - Add `WebRTCPeerConnection.initialize` method to create a new connection with the desired configuration provided as dictionary ([see MDN docs](https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/RTCPeerConnection#RTCConfiguration_dictionary)). - Add `WebRTCPeerConnection.create_data_channel` method to create a data channel for the given connection. The connection must be in `STATE_NEW` as specified by the standard ([see MDN docs for options](https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/createDataChannel#RTCDataChannelInit_dictionary)). - Add a `data_channel_received` signal to `WebRTCPeerConnection` for in-band (not negotiated) channels. - Renamed `WebRTCPeerConnection` `offer_created` signal to `session_description_created`. - Renamed `WebRTCPeerConnection` `new_ice_candidate` signal to `ice_candidate_created`
* Add WebRTC GDNative interfaceFabio Alessandrelli2019-04-122-1/+52
|
* Fixing C compatiblity for GDNative NET moduleFabio Alessandrelli2019-02-244-8/+8
| | | | Also add net interfaces to gdnative_api.json
* Update copyright statements to 2019Rémi Verschelde2019-01-018-16/+16
| | | | Happy new year to the wonderful Godot community!
* SCons: Build thirdparty code in own env, disable warningsRémi Verschelde2018-09-281-7/+2
| | | | | Also remove unnecessary `Export('env')` in other SCsubs, Export should only be used when exporting *new* objects.
* Add [Packet/Stream/Multiplayer]PeerGDNativeFabio Alessandrelli2018-06-279-0/+558
They provide an interface to implement PacketPeer, StreamPeer, and NetworkedMultiplayerPeer via GDNative.