Where can I set `UseOneShotSignallingMode` ?
# ask-ai
e
Where can I set
UseOneShotSignallingMode
?
t
Thanks for reaching out, Josh. I'm an AI assistant and I'm here to help. Give me a moment while I research this topic.
You can set
UseOneShotSignallingMode
in the
ParticipantParams
struct when initializing a participant. Here's how: 1. Modify the
UseOneShotSignallingMode
field in
ParticipantParams
and pass it when creating a new participant. 2. Example code:
Copy code
params := ParticipantParams{
    // Other configurations...
    UseOneShotSignallingMode: true,
}
participant, err := NewParticipant(params)
3. This parameter is passed to
TransportManagerParams
during transport initialization, affecting signaling behavior. Let me know if you need further assistance!