<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>> Not sure where you got these from.<br>> <br>> 6GB = 6 * 1024 * 1024 * 1024 = 4 * 1024^3 = 6442450944<br>> <br>> 6GB in binary is<br>> <br>> 0000000000000000000000000000000110000000000000000000000000000000<br>> <br>> 3210987654321098765432109876543210987654321098765432109876543210<br>>    6         5         4         3         2         1         0<br>> <br>> So the lower 32 bits are:<br>> <br>> 10000000000000000000000000000000<br>> <br>> and the upper 32 bits are:<br>> <br>> 00000000000000000000000000000001<br>> <br>> The lower bits can be found by bitwise AND with (2^32)-1 (i.e. 32<br>> ones):<br>> <br>> $ python<br>> >>> 6*(1024**3) & ((2**32)-1)<br>> 2147483648<br>> <br>> The upper 32 bits by shifting right by 32 bits:<br>> <br>> >>> 6*(1024**3) >> 32<br>> 1<br>> <br>> <br>> So you want <br>> <br>> > i put 536870912 in ChilliSpot-Max-Input-Octets<br>> <br>> this should be 2147483648;<br>> <br>> > i put 268435456 in ChilliSpot-Max-Input-Gigawords<br>> <br>> This should be 1.<br><br>This reminds me my university time!<br>                                       </div></body>
</html>