Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8278a76e
Commit
8278a76e
authored
Jan 05, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/misc/sap.c : let the user configure timeout delay
* src/playlist/item-ext.c : sanity checks when adding items
parent
708fa729
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
8 deletions
+30
-8
modules/misc/sap.c
modules/misc/sap.c
+14
-3
src/playlist/item-ext.c
src/playlist/item-ext.c
+16
-5
No files found.
modules/misc/sap.c
View file @
8278a76e
...
...
@@ -2,7 +2,7 @@
* sap.c : SAP interface module
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: sap.c,v 1.4
4 2004/01/05 12:59:5
4 zorglub Exp $
* $Id: sap.c,v 1.4
5 2004/01/05 14:42:1
4 zorglub Exp $
*
* Authors: Arnaud Schauly <gitan@via.ecp.fr>
* Clment Stenac <zorglub@via.ecp.fr>
...
...
@@ -95,6 +95,10 @@
#define SAP_SCOPE_TEXT N_("IPv6 SAP scope")
#define SAP_SCOPE_LONGTEXT N_( \
"Sets the scope for IPv6 announces (default is 8)")
#define SAP_TIMEOUT_TEXT N_("SAP timeout")
#define SAP_TIMEOUT_LONGTEXT N_( \
"Sets the time before SAP items get deleted if no new announce" \
"is received")
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
...
...
@@ -113,6 +117,9 @@ vlc_module_begin();
add_string
(
"sap-ipv6-scope"
,
"8"
,
NULL
,
SAP_SCOPE_TEXT
,
SAP_SCOPE_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"sap-timeout"
,
30
,
NULL
,
SAP_TIMEOUT_TEXT
,
SAP_TIMEOUT_LONGTEXT
,
VLC_TRUE
);
set_description
(
_
(
"SAP interface"
)
);
set_capability
(
"interface"
,
0
);
set_callbacks
(
Open
,
Close
);
...
...
@@ -183,6 +190,8 @@ struct intf_sys_t
/* Table of announces */
int
i_announces
;
struct
sap_announce_t
**
pp_announces
;
int
i_timeout
;
};
#ifdef HAVE_ZLIB_H
...
...
@@ -236,6 +245,7 @@ static int Open( vlc_object_t *p_this )
playlist_t
*
p_playlist
;
p_sys
->
i_timeout
=
config_GetInt
(
p_intf
,
"sap-timeout"
);
p_sys
->
fd
[
0
]
=
-
1
;
p_sys
->
fd
[
1
]
=
-
1
;
if
(
config_GetInt
(
p_intf
,
"sap-ipv4"
)
)
...
...
@@ -393,7 +403,8 @@ static void Run( intf_thread_t *p_intf )
for
(
i
=
0
;
i
<
p_intf
->
p_sys
->
i_announces
;
i
++
)
{
struct
sap_announce_t
*
p_announce
;
if
(
mdate
()
-
p_intf
->
p_sys
->
pp_announces
[
i
]
->
i_last
>
10000000
)
if
(
mdate
()
-
p_intf
->
p_sys
->
pp_announces
[
i
]
->
i_last
>
1000000
*
p_sys
->
i_timeout
)
{
msg_Dbg
(
p_intf
,
"Time out for %s, deleting (%i/%i)"
,
p_intf
->
p_sys
->
pp_announces
[
i
]
->
psz_name
,
...
...
@@ -915,7 +926,7 @@ static sess_descr_t * parse_sdp( intf_thread_t * p_intf, char *p_packet )
sd
->
psz_sessionname
=
NULL
;
sd
->
psz_connection
=
NULL
;
sd
->
psz_sdp
=
strdup
(
p_packet
);
sd
->
i_media
=
0
;
sd
->
pp_media
=
NULL
;
sd
->
i_attributes
=
0
;
...
...
src/playlist/item-ext.c
View file @
8278a76e
...
...
@@ -2,7 +2,7 @@
* item-ext.c : Exported playlist item functions
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: item-ext.c,v 1.
1 2004/01/05 12:59:43
zorglub Exp $
* $Id: item-ext.c,v 1.
2 2004/01/05 14:42:14
zorglub Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Clment Stenac <zorglub@videolan.org>
...
...
@@ -53,9 +53,20 @@ int playlist_Add( playlist_t *p_playlist, const char * psz_uri,
{
msg_Err
(
p_playlist
,
"out of memory"
);
}
p_item
->
psz_name
=
strdup
(
psz_name
);
if
(
psz_uri
==
NULL
)
{
msg_Err
(
p_playlist
,
"Not adding NULL item"
);
return
-
1
;
}
p_item
->
psz_uri
=
strdup
(
psz_uri
);
if
(
psz_name
!=
NULL
)
{
p_item
->
psz_name
=
strdup
(
psz_name
);
}
else
{
p_item
->
psz_name
=
strdup
(
psz_uri
);
}
p_item
->
i_status
=
0
;
p_item
->
b_autodeletion
=
VLC_FALSE
;
p_item
->
b_enabled
=
VLC_TRUE
;
...
...
@@ -65,8 +76,8 @@ int playlist_Add( playlist_t *p_playlist, const char * psz_uri,
p_item
->
pp_categories
=
NULL
;
p_item
->
i_categories
=
0
;
playlist_CreateItemCategory
(
p_item
,
"General"
);
playlist_CreateItemCategory
(
p_item
,
"Options"
);
playlist_CreateItemCategory
(
p_item
,
_
(
"General"
)
);
playlist_CreateItemCategory
(
p_item
,
_
(
"Options"
)
);
return
playlist_AddItem
(
p_playlist
,
p_item
,
i_mode
,
i_pos
);
}
...
...
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