netsnmp.raw
Netsnmp_raw.ASN1_Bitstring
netsnmp
netsnmp.async
netsnmp.raw_monad
type t
val to_int_list : t -> int list
to_int_list converts a bitstring to a list of octet values
to_int_list
val to_hex_string : ?sep:string -> string -> string
to_hex_string converts a bitstring into a hex string with octet values separated by sep. sep defaults to space.
to_hex_string
sep
val to_bit_list : t -> int list
to_bit_list converts a bitstring to a list of set bits. The left most bit is 0
to_bit_list
val to_string : t -> string
to_string converts a bitstring to a string in the format Hex-Bytes BITS(Numbers of each set bit). eg 99 CC BITS(0 3 4 7 8 9 12 13). The left most bit is bit 0.
to_string
Hex-Bytes BITS(Numbers of each set bit)
99 CC BITS(0 3 4 7 8 9 12 13)