1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2004-2013. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
%%
%% %CopyrightEnd%
%%
-module(snmpm_user).
-export_type([
snmp_gen_info/0,
snmp_v1_trap_info/0
]).
-type snmp_gen_info() :: {ErrorStatus :: atom(),
ErrorIndex :: pos_integer(),
Varbinds :: [snmp:varbind()]}.
-type snmp_v1_trap_info() :: {Enteprise :: snmp:oid(),
Generic :: integer(),
Spec :: integer(),
Timestamp :: integer(),
Varbinds :: [snmp:varbind()]}.
-type ip_address() :: inet:ip_address().
-type port_number() :: inet:port_number().
%% *** handle_error ***
%% An "asynchronous" error has been detected
-callback handle_error(ReqId :: integer(),
Reason :: {unexpected_pdu, SnmpInfo :: snmp_gen_info()} |
{invalid_sec_info, SecInfo :: term(), SnmpInfo :: snmp_gen_info()} |
{empty_message, Addr :: ip_address(), Port :: port_number()} |
term(),
UserData :: term()) ->
snmp:void().
%% *** handle_agent ***
%% A message was received from an unknown agent
-callback handle_agent(Addr :: term(),
Port :: pos_integer(),
Type :: pdu | trap | inform | report,
SnmpInfo :: snmp_gen_info() | snmp_v1_trap_info(),
UserData :: term()) ->
Reply :: ignore |
{register,
UserId :: term(),
RTargetName :: snmpm:target_name(),
AgentConfig :: [snmpm:agent_config()]}.
%% *** handle_pdu ***
%% Handle the reply to an async request (such as get, get-next and set).
-callback handle_pdu(TargetName :: snmpm:target_name(),
ReqId :: term(),
SnmpResponse :: snmp_gen_info(),
UserData :: term()) ->
snmp:void().
%% *** handle_trap ***
%% Handle a trap/notification message received from an agent
-callback handle_trap(TargetName :: snmpm:target_name(),
SnmpTrapInfo :: snmp_gen_info() | snmp_v1_trap_info(),
UserData :: term()) ->
Reply :: ignore |
unregister |
{register,
UserId :: term(),
RTargetName :: snmpm:target_name(),
AgentConfig :: [snmpm:agent_config()]}.
%% *** handle_inform ***
%% Handle a inform message received from an agent
-callback handle_inform(TargetName :: snmpm:target_name(),
SnmpInform :: snmp_gen_info(),
UserData :: term()) ->
Reply :: ignore | no_reply |
unregister |
{register,
UserId :: term(),
RTargetName :: snmpm:target_name(),
AgentConfig :: [snmpm:agent_config()]}.
%% *** handle_report ***
%% Handle a report message received from an agent
-callback handle_report(TargetName :: snmpm:target_name(),
SnmpReport :: snmp_gen_info(),
UserData :: term()) ->
Reply :: ignore |
unregister |
{register,
UserId :: term(),
RTargetName :: snmpm:target_name(),
AgentConfig :: [snmpm:agent_config()]}.
|