Changeset cf2384ecddd3e47223d8cc1dc29c0ef60d0aab06

Show
Ignore:
Timestamp:
26/09/08 17:01:25 (2 months ago)
Author:
Rémi Denis-Courmont <rdenis@simphalempin.com>
git-committer:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1222441285 +0300
git-parent:

[7cdc5d03053dde6c160969936bb374b96a6250e6]

git-author:
Rémi Denis-Courmont <rdenis@simphalempin.com> 1222441285 +0300
Message:

RTP: fix parsing IPv6 addresses

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/rtp.c

    rb4951bc rcf2384e  
    307307    if (host[0] == '[') 
    308308    { 
    309         host = *++phost; /* skip '[' */ 
     309        host = ++*phost; /* skip '[' */ 
    310310        port = strchr (host, ']'); 
    311311        if (port)