~ubuntu-branches/ubuntu/lucid/erlang/lucid-proposed

« back to all changes in this revision

Viewing changes to lib/snmp/src/agent/snmpa_discovery_handler_default.erl

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-06-11 12:18:07 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090611121807-ks7eb4xrt7dsysgx
Tags: 1:13.b.1-dfsg-1
* New upstream release.
* Removed unnecessary dependency of erlang-os-mon on erlang-observer and
  erlang-tools and added missing dependency of erlang-nox on erlang-os-mon
  (closes: #529512).
* Removed a patch to eunit application because the bug was fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%%
 
2
%% %CopyrightBegin%
 
3
%% 
 
4
%% Copyright Ericsson AB 2009. All Rights Reserved.
 
5
%% 
 
6
%% The contents of this file are subject to the Erlang Public License,
 
7
%% Version 1.1, (the "License"); you may not use this file except in
 
8
%% compliance with the License. You should have received a copy of the
 
9
%% Erlang Public License along with this software. If not, it can be
 
10
%% retrieved online at http://www.erlang.org/.
 
11
%% 
 
12
%% Software distributed under the License is distributed on an "AS IS"
 
13
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 
14
%% the License for the specific language governing rights and limitations
 
15
%% under the License.
 
16
%% 
 
17
%% %CopyrightEnd%
 
18
%%
 
19
-module(snmpa_discovery_handler_default).
 
20
 
 
21
-behaviour(snmpa_discovery_handler).
 
22
 
 
23
 
 
24
%%%-----------------------------------------------------------------
 
25
%%% Implements different error mechanisms.
 
26
%%%-----------------------------------------------------------------
 
27
-export([stage1_finish/2]).
 
28
 
 
29
 
 
30
%%-----------------------------------------------------------------
 
31
%% This function is called at the end of stage 1 of the discovery
 
32
%% process. If security-level is noAuthNoPriv, then 
 
33
%% 
 
34
%% 
 
35
%%-----------------------------------------------------------------
 
36
stage1_finish(_TargetName, _ManagerEngineID) ->
 
37
    ignore.
 
38