Re: [rtcweb] SDP Offer/Answer draft-jennings-rtcweb-signaling

Iñaki Baz Castillo <ibc@aliax.net> Sat, 15 October 2011 09:46 UTC

Return-Path: <ibc@aliax.net>
X-Original-To: rtcweb@ietfa.amsl.com
Delivered-To: rtcweb@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id E4E2E21F8B62 for <rtcweb@ietfa.amsl.com>; Sat, 15 Oct 2011 02:46:37 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.58
X-Spam-Level:
X-Spam-Status: No, score=-2.58 tagged_above=-999 required=5 tests=[AWL=0.097, BAYES_00=-2.599, FM_FORGED_GMAIL=0.622, MIME_8BIT_HEADER=0.3, RCVD_IN_DNSWL_LOW=-1]
Received: from mail.ietf.org ([12.22.58.30]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8drBpCi3cLTB for <rtcweb@ietfa.amsl.com>; Sat, 15 Oct 2011 02:46:37 -0700 (PDT)
Received: from mail-vw0-f44.google.com (mail-vw0-f44.google.com [209.85.212.44]) by ietfa.amsl.com (Postfix) with ESMTP id 4F22821F8B4C for <rtcweb@ietf.org>; Sat, 15 Oct 2011 02:46:27 -0700 (PDT)
Received: by vws5 with SMTP id 5so1917296vws.31 for <rtcweb@ietf.org>; Sat, 15 Oct 2011 02:46:26 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.52.184.103 with SMTP id et7mr12618106vdc.35.1318671986666; Sat, 15 Oct 2011 02:46:26 -0700 (PDT)
Received: by 10.220.118.143 with HTTP; Sat, 15 Oct 2011 02:46:26 -0700 (PDT)
In-Reply-To: <CALiegf=EXfNAfRDGiohz3aSqmZzsDDXbE=DRNX0gZTXz7x4+Yg@mail.gmail.com>
References: <15B0E3AD-3086-499A-8E79-7AE58B3376C4@cisco.com> <CALiegf=EXfNAfRDGiohz3aSqmZzsDDXbE=DRNX0gZTXz7x4+Yg@mail.gmail.com>
Date: Sat, 15 Oct 2011 11:46:26 +0200
Message-ID: <CALiegfng7_FrzN6ohQ8+tgs_iZ2H+CvCLw-iuSbdLtetNCRHQQ@mail.gmail.com>
From: Iñaki Baz Castillo <ibc@aliax.net>
To: Cullen Jennings <fluffy@cisco.com>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Cc: Jonathan Rosenberg <jonathan.rosenberg@skype.net>, rtcweb@ietf.org, public-webrtc@w3.org
Subject: Re: [rtcweb] SDP Offer/Answer draft-jennings-rtcweb-signaling
X-BeenThere: rtcweb@ietf.org
X-Mailman-Version: 2.1.12
Precedence: list
List-Id: Real-Time Communication in WEB-browsers working group list <rtcweb.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/rtcweb>, <mailto:rtcweb-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/rtcweb>
List-Post: <mailto:rtcweb@ietf.org>
List-Help: <mailto:rtcweb-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/rtcweb>, <mailto:rtcweb-request@ietf.org?subject=subscribe>
X-List-Received-Date: Sat, 15 Oct 2011 09:46:38 -0000

2011/10/15 Iñaki Baz Castillo <ibc@aliax.net>:
> -----------------------------
> 5.3.3.  OK
> The OK message is used by the receiver of an ANSWER message to
> indicate that it has received the ANSWER message. It has no contents
> itself and is merely used to stop the retransmissions of the ANSWER
> -----------------------------

Hi, some other possible issues with the above ROAP OK message:

ROAP OK message fits well with the ACK for 2XX in SIP. Let's assume
that alice (pure SIP UA) and bob (RTCweb client) can intercommunicate
via a RTCweb server implementing SIP over WebSocket (so JS in both
browser is speaking real SIP rather than a custom protocol).

NOTE: When alice sends a SIP INVITE to bob it arrives unchanged to
bob. bob extracts the SDP and converts it into a ROAP OFFER. So I
write it as "INVITE + ROAP OFFER" but it just means a common SIP
INVITE with an SDP.



case 1)  SDP OFFER in the INVITE

  alice (SIP client)          bob (RTCweb client)

  --------> INVITE + ROAP OFFER (F1)

      200 OK + ROAP ANSWER (F2) <---------

      (200 is lost in the network or server)

      200 OK + ROAP ANSWER (F2) <---------
      200 OK + ROAP ANSWER (F2) <---------

  ---------> ACK (F3)


ISSUE: How would bob receive a ROAP OK message?

Possible response: bob should generate it by itself upon receipt of
the SIP ACK and signal it to the RTCweb stack in his browser. Am I
right?




case 2)  SDP OFFER in the 200 OK

  alice (SIP client)          bob (RTCweb client)

  --------> INVITE (no SDP)

         200 OK + ROAP OFFER (F2) <---------

      (200 is lost in the network or server)

         200 OK + ROAP OFFER (F2) <---------
         200 OK + ROAP OFFER (F2) <---------

  ---------> ACK + ROAP ANSWER (F3)


ISSUE: In this case there is no SIP message to confirm the receipt of
the ACK (which carries the SDP answer) so bob has no chance to send
the ROAP OK message over the wire. Would it break the signaling?

Possible response: there is no need at all in sending the ROAP OK
message (if alice is a pure SIP client it does not need it, and if
alice is a RTCweb client it should autogenerate it).


ISSUE: Now imagine that alice is also a WEBrtc client. In this case
(Case 2) when alice sends the ACK + ROAP ANSWER she will not receive a
new SIP message (which could be mapped to ROAP OK) so, should alice
signal the ROAP OK message to his RTCweb stack once the ACK + ROAP
ANSWER is sent?

Possible response: yes.



Thanks a lot.


-- 
Iñaki Baz Castillo
<ibc@aliax.net>