~rdoering/ubuntu/karmic/erlang/fix-535090

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (1.1.13 upstream)
  • mto: (3.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: james.westby@ubuntu.com-20090215164252-dxpjjuq108nz4noa
Upload to unstable after lenny is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
         current_request_id/0, current_community/0, current_address/0,
30
30
         current_context/0, current_net_if_data/0, 
31
31
         
32
 
         get_symbolic_store_db/0,
 
32
         get_symbolic_store_db/0, 
33
33
         which_aliasnames/0, 
34
34
         which_tables/0, 
35
35
         which_variables/0, 
46
46
         dump_mibs/0, dump_mibs/1,
47
47
         mib_of/1, mib_of/2, 
48
48
         me_of/1,  me_of/2, 
 
49
         invalidate_mibs_cache/0, invalidate_mibs_cache/1, 
49
50
 
50
51
         get/2, get/3, get_next/2, get_next/3,
51
52
 
278
279
me_of(Agent, Oid) ->
279
280
    snmpa_agent:me_of(Agent, Oid).
280
281
 
 
282
invalidate_mibs_cache() ->
 
283
    invalidate_mibs_cache(snmp_master_agent).
 
284
 
 
285
invalidate_mibs_cache(Agent) ->
 
286
    snmpa_agent:invalidate_mibs_cache(Agent).
 
287
 
281
288
 
282
289
%% - message filter / load regulation
283
290