Changeset cf2384ecddd3e47223d8cc1dc29c0ef60d0aab06
- 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
| rb4951bc |
rcf2384e |
|
| 307 | 307 | if (host[0] == '[') |
|---|
| 308 | 308 | { |
|---|
| 309 | | host = *++phost; /* skip '[' */ |
|---|
| | 309 | host = ++*phost; /* skip '[' */ |
|---|
| 310 | 310 | port = strchr (host, ']'); |
|---|
| 311 | 311 | if (port) |
|---|