Thank you for contacting Domio Sports!
On Thu, Aug 13 2020, at 03:15 PM, <sip-implementors@lists.cs.columbia.edu> Send Sip-implementors mailing list submissions to sip-implementors@lists.cs.columbia.edu To subscribe or unsubscribe via the World Wide Web, visit https://lists.cs.columbia.edu/mailman/listinfo/sip-implementors or, via email, send a message with subject or body 'help' to sip-implementors-requ...@lists.cs.columbia.edu You can reach the person managing the list at sip-implementors-ow...@lists.cs.columbia.edu When replying, please edit your Subject line so it is more specific than "Re: Contents of Sip-implementors digest..." Today's Topics: 1. Re: [External]Sip-implementors Digest, Vol 76, Issue 7 (i...@homecredit.ph) 2. Hey there (Filip Testowy) 3. Multiple Colon (:) as Header delimiter of name-value (Gaurav Khare) 4. Re: Multiple Colon (:) as Header delimiter of name-value (Pravin Kumar) 5. Re: Multiple Colon (:) as Header delimiter of name-value (Paul Kyzivat) ---------------------------------------------------------------------- Message: 1 Date: Thu, 13 Aug 2020 00:01:16 +0800 (PHT) From: i...@homecredit.ph To: sip-implementors@lists.cs.columbia.edu Subject: Re: [Sip-implementors] [External]Sip-implementors Digest, Vol 76, Issue 7 Message-ID: <04vxnafjnqqcm...@homecredit.ph> Content-Type: text/plain; charset=utf-8 This is an automated response.?? We'll try our best to respond within 24 hours.???? Para sa account specific concerns, please make sure na naisulat ninyo sa email ang inyong Loan Account Number at Date of Birth, para mapabilis ang inyong transaction. Here???s a quick guide para sa mga dapat asahan ngayong new normal: Making payments for your Home Credit loan is now more convenient and can be done via the latest version of the My Home Credit app.?? Maaaring magbayad gamit ang iyong??Bancnet ATM card and Mastercard/Visa debit card. Para sa mga loan customers na nag-avail ng grace period para sa mga due dates mula March 17-May 31, ang inyong loan term ay na-extend at ito ay naka-reflect na sa mobile app.?? Makikita rin ang equivalent na accrued interest para dito.??For more information, visit: https://homecredit.ph/payments/frequently-asked-questions/. If you???re contacting us about payment arrangements, feel free to call us at 02(7753-5712)??to discuss your options.?? Gift payment eligibility will not be affected by the grace period and will be automatically applied on your account. You just need to make sure to keep your account updated according to the new installment schedule. For credit card customers, siguraduhing magbayad ng at least minimum??amount due para mapanatiling active ang inyong card at maiwasan ang late payment fee. Maaari ninyong puntahan ang bit.ly/HCPayNow para magbayad online o tignan ang list of available payment partners dito. Para sa mga enrolled sa ADA, we have resumed regular bank debiting??three days before your due date from July 1 due date onwards. ------------------------------ Message: 2 Date: Wed, 12 Aug 2020 18:03:41 +0200 From: Filip Testowy To: sip-implementors@lists.cs.columbia.edu Subject: [Sip-implementors] Hey there Message-ID: Content-Type: text/plain; charset="UTF-8" How are you? ------------------------------ Message: 3 Date: Thu, 13 Aug 2020 09:00:02 +0000 From: Gaurav Khare To: Sip-implementors Subject: [Sip-implementors] Multiple Colon (:) as Header delimiter of name-value Message-ID: Content-Type: text/plain; charset="utf-8" Hi, I have a specific problem relating to SIP header format. A UAC is sending Call-ID Header in INVITE as below Call-ID: : vat4082403130ofbcghefckco...@mscsma1.ims.mnc007.mcc748.3gppnetwork.org My UAS is sending 180 Ringing response as Call-ID: vat4082403130ofbcghefckco...@mscsma1.ims.mnc007.mcc748.3gppnetwork.org Notice the two colons in UAC request. In the response my stack is ignoring additional Colon(:) but the response is rejected by UAC. I am perplexed as to if colon(:) can be a part of Call-ID value or if two Colons(:) can occur sequentially delimiting Header name and value. If someone can point me to a Section of RFC, it will be very helpful. Thanks in advance, Gaurav Khare ________________________________ DISCLAIMER: The information in this message is confidential and may be legally privileged. It is intended solely for the addressee. Access to this message by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, or distribution of the message, or any action or omission taken by you in reliance on it, is prohibited and may be unlawful. Please immediately contact the sender if you have received this message in error. Further, this e-mail may contain viruses and all reasonable precaution to minimize the risk arising there from is taken by OnMobile. OnMobile is not liable for any damage sustained by you as a result of any virus in this e-mail. All applicable virus checks should be carried out by you before opening this e-mail or any attachment thereto. Thank you - OnMobile Global Limited. ------------------------------ Message: 4 Date: Thu, 13 Aug 2020 15:04:56 +0530 From: Pravin Kumar To: Gaurav Khare Cc: Sip-implementors Subject: Re: [Sip-implementors] Multiple Colon (:) as Header delimiter of name-value Message-ID: Content-Type: text/plain; charset="UTF-8" Hi Gaurav, You can refer to RFC3261 Call-ID ABNF syntax section: [RFC3261 - page 228] Call-ID = ( "Call-ID" / "i" ) HCOLON callid callid = word [ "@" word ] [RFC3261 - page221] word = 1*(alphanum / "-" / "." / "!" / "%" / "*" / "_" / "+" / "'" / "'" / "~" / "(" / ")" / "<" / ">" / ":" / "\" / DQUOTE / "/" / "[" / "]" / "?" / "{" / "}" ) If you observe here ":" is allowed in call-id irrespective to position. So in your case UAS behaviour is not correct to remove the ":". -pravin On Thu, Aug 13, 2020 at 2:30 PM Gaurav Khare wrote: > Hi, > > I have a specific problem relating to SIP header format. > > A UAC is sending Call-ID Header in INVITE as below > Call-ID: : > vat4082403130ofbcghefckco...@mscsma1.ims.mnc007.mcc748.3gppnetwork.org > > My UAS is sending 180 Ringing response as > Call-ID: > vat4082403130ofbcghefckco...@mscsma1.ims.mnc007.mcc748.3gppnetwork.org > vat4082403130ofbcghefckco...@mscsma1.ims.mnc007.mcc748.3gppnetwork.org> > > Notice the two colons in UAC request. In the response my stack is ignoring > additional Colon(:) but the response is rejected by UAC. I am perplexed as > to if colon(:) can be a part of Call-ID value or if two Colons(:) can occur > sequentially delimiting Header name and value. > > If someone can point me to a Section of RFC, it will be very helpful. > > Thanks in advance, > Gaurav Khare > > > > ________________________________ > > DISCLAIMER: The information in this message is confidential and may be > legally privileged. It is intended solely for the addressee. Access to this > message by anyone else is unauthorized. If you are not the intended > recipient, any disclosure, copying, or distribution of the message, or any > action or omission taken by you in reliance on it, is prohibited and may be > unlawful. Please immediately contact the sender if you have received this > message in error. Further, this e-mail may contain viruses and all > reasonable precaution to minimize the risk arising there from is taken by > OnMobile. OnMobile is not liable for any damage sustained by you as a > result of any virus in this e-mail. All applicable virus checks should be > carried out by you before opening this e-mail or any attachment thereto. > Thank you - OnMobile Global Limited. > _______________________________________________ > Sip-implementors mailing list > Sip-implementors@lists.cs.columbia.edu > https://lists.cs.columbia.edu/mailman/listinfo/sip-implementors > _______________________________________________ Sip-implementors mailing list Sip-implementors@lists.cs.columbia.edu https://lists.cs.columbia.edu/mailman/listinfo/sip-implementors