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
0d4616be
Commit
0d4616be
authored
Jul 15, 2015
by
Hannes Domani
Committed by
Jean-Baptiste Kempf
Jul 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua: do a binary-and operation in is_flag_set()
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
ac7e457d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
share/lua/intf/modules/host.lua
share/lua/intf/modules/host.lua
+8
-1
No files found.
share/lua/intf/modules/host.lua
View file @
0d4616be
...
...
@@ -68,7 +68,14 @@ status = { init = 0, read = 1, write = 2, password = 3 }
client_type
=
{
net
=
1
,
stdio
=
2
,
fifo
=
3
,
telnet
=
4
}
function
is_flag_set
(
val
,
flag
)
return
(((
val
-
(
val
%
flag
))
/
flag
)
%
2
~=
0
)
local
bit
=
65536
while
bit
>
1
do
val
=
val
%
bit
flag
=
flag
%
bit
bit
=
bit
/
2
if
val
>=
bit
and
flag
>=
bit
then
return
true
end
end
return
false
end
function
host
()
...
...
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