summaryrefslogtreecommitdiff
path: root/accel-pppd/ctrl/ipoe/lua_bit.c
AgeCommit message (Collapse)Author
2017-04-04ipoe: included lua bitop libraryDmitry Kozlov
Included bitop library http://bitop.luajit.org/index.html It may be used to extract vlan components in username function: function username(ses) vid=ses:vlan() svid=bit.rshift(vid,16) cvid=bit.band(vid,0xffff) ... end