Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/livekit/room.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ struct RoomOptions {
// Enable single peer connection mode. When true, uses one RTCPeerConnection
// for both publishing and subscribing instead of two separate connections.
// Falls back to dual peer connection if the server doesn't support single PC.
bool single_peer_connection = false;
bool single_peer_connection = true;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this technically a breaking change?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it is just using different implementation for signaling.

Our developers should not notice any difference except for a smaller connection latency


// Optional WebRTC configuration (ICE policy, servers, etc.)
std::optional<RtcConfig> rtc_config;
Expand Down
Loading