123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657(*
* Copyright (c) 2010 Anil Madhavapeddy <anil@recoil.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*)(* TCP sequence numbers must work with overflow, so this puts them in a
separate type to make sure they dont get mixed up *)typet=int32(* a < b *)letltab=(Int32.subab)<0l(* a <= b *)letleqab=(Int32.subab)<=0l(* a > b *)letgtab=(Int32.subab)>0l(* a >= b *)letgeqab=(Int32.subab)>=0l(* b <= a <= c *)letbetweenabc=(geqab)&&(leqac)(* a + b *)letaddab=Int32.addab(* a - b *)letsubab=Int32.subab(* a + 1 *)letsucca=Int32.succa(* a - 1 *)letpreda=Int32.predaletcompareab=Int32.compareabletof_int32t=tletof_intt=Int32.of_inttletto_int32t=tletto_intt=Int32.to_inttletzero=Int32.zeroletppfmtt=Format.fprintffmt"%lu"t