~ubuntu-branches/debian/squeeze/erlang/squeeze

« 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-08-05 20:54:29 UTC
  • mfrom: (6.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090805205429-pm4pnwew8axraosl
Tags: 1:13.b.1-dfsg-5
* Fixed parentheses in Emacs mode (closes: #536891).
* Removed unnecessary conflicts with erlang-manpages package.
* Added workaround for #475459: disabled threads on sparc architecture.
  This breaks wxErlang, so it's only a temporary solution.

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