fixed maximum value for le = 00 [00 [00]]

This commit is contained in:
Frank Morgner
2012-09-05 09:36:53 +02:00
parent dc2d277c4f
commit b7bdc3da88

View File

@@ -16,8 +16,8 @@
# You should have received a copy of the GNU General Public License along with
# virtualsmartcard. If not, see <http://www.gnu.org/licenses/>.
MAX_SHORT_LE = 0xff
MAX_EXTENDED_LE = 0xffff
MAX_SHORT_LE = 0xff+1
MAX_EXTENDED_LE = 0xffff+1
# Life cycle status byte
LCB = {}