Skip to main content

SDP

SDP(Session Description Protocol)란, P2P 연결에서 세션을 정의하는 표준 프로토콜로, RFC 8866에 정의 돼 있다.

SDP는 세션 참가자를 위한 Media Stream의 정보를 전달하는 역할을 한다.

WebRTC에서는 SDP를 통해 signaling(ex. socket.emit())을 하는데, Peer간 Offer, Answer 할 때 전달된다. 자신의 SDP를 LocalDescription에 저장하고(setLocalDescription()), 전달 받은 Peer의 SDP를 RemoteDescription에 저장한다(setRemoteDescription).

Related Links