mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
add Trickle ICE support.
This commit is contained in:
@ -5,6 +5,7 @@ export const SYSTEM_DISCONNECT = 'system/disconnect'
|
||||
export const SIGNAL_REQUEST = 'signal/request'
|
||||
export const SIGNAL_ANSWER = 'signal/answer'
|
||||
export const SIGNAL_PROVIDE = 'signal/provide'
|
||||
export const SIGNAL_CANDIDATE = 'signal/candidate'
|
||||
|
||||
export const MEMBER_CREATED = 'member/created'
|
||||
export const MEMBER_DELETED = 'member/deleted'
|
||||
|
@ -39,6 +39,10 @@ export interface SignalProvide {
|
||||
ice: string[]
|
||||
}
|
||||
|
||||
export interface SignalCandidate extends RTCIceCandidateInit {
|
||||
event: string | undefined
|
||||
}
|
||||
|
||||
export interface SignalAnswer {
|
||||
event: string | undefined
|
||||
sdp: string
|
||||
|
Reference in New Issue
Block a user