summaryrefslogtreecommitdiff
path: root/src/GodotCreateSessionDescriptionObserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/GodotCreateSessionDescriptionObserver.cpp')
-rw-r--r--src/GodotCreateSessionDescriptionObserver.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/GodotCreateSessionDescriptionObserver.cpp b/src/GodotCreateSessionDescriptionObserver.cpp
new file mode 100644
index 0000000..1f4b661
--- /dev/null
+++ b/src/GodotCreateSessionDescriptionObserver.cpp
@@ -0,0 +1,16 @@
+#include "WebRTCPeer.hpp"
+
+using namespace godot_webrtc;
+
+WebRTCPeer::GodotCSDO::GodotCSDO(WebRTCPeer *parent) {
+ this->parent = parent;
+}
+
+void WebRTCPeer::GodotCSDO::OnSuccess(webrtc::SessionDescriptionInterface *desc) {
+ // serialize this offer and send it to the remote peer:
+ std::string sdp; // sdp = session description protocol
+ desc->ToString(&sdp);
+ parent->queue_signal("offer_created", 2, desc->type().c_str(), sdp.c_str());
+};
+
+void WebRTCPeer::GodotCSDO::OnFailure(const std::string &error){};