Skip to content

Commit

Permalink
Update room.py
Browse files Browse the repository at this point in the history
  • Loading branch information
theomonnom committed Sep 25, 2023
1 parent 6c18e4b commit 9f1ab17
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions livekit/room.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@

@dataclass
class RtcConfiguration:
ice_transport_type: Optional[proto_room.IceTransportType] = None
continual_gathering_policy: Optional[proto_room.ContinualGatheringPolicy] = None
ice_transport_type: proto_room.IceTransportType = \
proto_room.IceTransportType.TRANSPORT_ALL
continual_gathering_policy: proto_room.ContinualGatheringPolicy = \
proto_room.ContinualGatheringPolicy.GATHER_CONTINUALLY
ice_servers: list[proto_room.IceServer] = field(default_factory=list)


Expand Down

0 comments on commit 9f1ab17

Please sign in to comment.