Source File
offeransweroptions.go
Belonging Package
github.com/pion/webrtc/v4
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage webrtc// OfferAnswerOptions is a base structure which describes the options that// can be used to control the offer/answer creation process.type OfferAnswerOptions struct {// VoiceActivityDetection allows the application to provide information// about whether it wishes voice detection feature to be enabled or disabled.VoiceActivityDetection bool}// AnswerOptions structure describes the options used to control the answer// creation process.type AnswerOptions struct {OfferAnswerOptions}// OfferOptions structure describes the options used to control the offer// creation process.type OfferOptions struct {OfferAnswerOptions// ICERestart forces the underlying ice gathering process to be restarted.// When this value is true, the generated description will have ICE// credentials that are different from the current credentialsICERestart bool}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |