You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/SessionMessagingKit/Calls/File.swift

17 lines
503 B
Swift

//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
import WebRTC
//The RTCSessionDescription interface describes one end of a connectionor potential connectionand how it's configured. Each RTCSessionDescription consists of a description type indicating which part of the offer/answer negotiation process it describes and of the SDP descriptor of the session.
enum Foo {
func bar() {
RTCSessionDescription(type: .answer, sdp: "")
}
}