Commit 2f92b225 authored by Ilkka Ollakka's avatar Ilkka Ollakka

http: implement ACCESS_GET_SIZE

parent 7a68780f
......@@ -994,6 +994,11 @@ static int Control( access_t *p_access, int i_query, va_list args )
* var_InheritInteger( p_access, "network-caching" );
break;
case ACCESS_GET_SIZE:
pi_64 = (int64_t*)va_arg( args, int64_t * );
*pi_64 = p_sys->size;
break;
/* */
case ACCESS_SET_PAUSE_STATE:
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment