mirror of https://github.com/oxen-io/session-ios
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.
17 lines
503 B
Swift
17 lines
503 B
Swift
4 years ago
|
//
|
||
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import WebRTC
|
||
|
|
||
|
//The RTCSessionDescription interface describes one end of a connection—or potential connection—and 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: "")
|
||
|
}
|
||
|
}
|