You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by Alex Karasulu <ao...@bellsouth.net> on 2004/03/19 02:57:35 UTC

[eve,ldap] BigInteger -> int conversion

Looking at the protocol the size of the messageID is restricted to:

maxInt INTEGER ::= 2147483647 -- (2^^31 - 1) --

For some reason I opted to go with a BigInteger when Integer.MAX_VALUE =
2,147,483,647 which is exactly the same.  We should switch to using an int.

I'm going to start the conversion.  This will effect clients and what not.

Alex