Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
27b0d464
Commit
27b0d464
authored
Dec 08, 2005
by
Marian Durkovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
first step towards SSM support in SDPs - refs #336
parent
dfa48be3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
modules/services_discovery/sap.c
modules/services_discovery/sap.c
+9
-1
No files found.
modules/services_discovery/sap.c
View file @
27b0d464
...
...
@@ -881,6 +881,7 @@ static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp )
char
*
psz_parse
;
char
*
psz_uri
=
NULL
;
char
*
psz_proto
=
NULL
;
char
psz_source
[
256
];
int
i_port
=
0
;
/* Parse c= field */
...
...
@@ -1032,7 +1033,14 @@ static int ParseConnection( vlc_object_t *p_obj, sdp_t *p_sdp )
i_port
=
1234
;
}
asprintf
(
&
p_sdp
->
psz_uri
,
"%s://@%s:%i"
,
psz_proto
,
psz_uri
,
i_port
);
/* handle SSM case */
psz_parse
=
GetAttribute
(
p_sdp
,
"source-filter"
);
psz_source
[
0
]
=
'\0'
;
if
(
psz_parse
)
sscanf
(
psz_parse
,
" incl IN IP%*s %*s %255s "
,
psz_source
);
asprintf
(
&
p_sdp
->
psz_uri
,
"%s://%s@%s:%i"
,
psz_proto
,
psz_source
,
psz_uri
,
i_port
);
FREE
(
psz_uri
);
FREE
(
psz_proto
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment