package netsnmp

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Netsnmp_types.Connection_infoSource

Sourcetype t = {
  1. version_auth : Snmp_version_auth.t;
  2. peername : string;
  3. localname : string option;
  4. local_port : int option;
  5. retries : int option;
  6. timeout : int option;
}
Sourceval create : version_auth:Snmp_version_auth.t -> peername:string -> ?localname:string -> ?local_port:int -> ?retries:int -> ?timeout:int -> unit -> t