snmp_api.h
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:7k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: snmp_api.h,v 1.11 1998/09/23 17:20:01 wessels Exp $
  3.  */
  4. #ifndef _SNMP_API_H_
  5. #define _SNMP_API_H_
  6. #include "config.h"
  7. #ifdef HAVE_SYS_TIME_H
  8. #include <sys/time.h>
  9. #endif
  10. /***********************************************************
  11. Copyright 1989 by Carnegie Mellon University
  12.                       All Rights Reserved
  13. Permission to use, copy, modify, and distribute this software and its 
  14. documentation for any purpose and without fee is hereby granted, 
  15. provided that the above copyright notice appear in all copies and that
  16. both that copyright notice and this permission notice appear in 
  17. supporting documentation, and that the name of CMU not be
  18. used in advertising or publicity pertaining to distribution of the
  19. software without specific, written prior permission.  
  20. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  21. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  22. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  23. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  25. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  26. SOFTWARE.
  27. ******************************************************************/
  28. /*
  29.  * snmp_api.h - API for access to snmp.
  30.  */
  31. /*
  32.  * Set fields in session and pdu to the following to get a default or unconfigured value.
  33.  */
  34. #define SNMP_DEFAULT_COMMUNITY_LEN  0 /* to get a default community name */
  35. #define SNMP_DEFAULT_RETRIES     3
  36. #define SNMP_DEFAULT_TIMEOUT     1
  37. #define SNMP_DEFAULT_REMPORT     0
  38. #define SNMP_DEFAULT_PEERNAME     NULL
  39. #define SNMP_DEFAULT_ENTERPRISE_LENGTH 0
  40. #define SNMP_DEFAULT_TIME     0
  41. #define SNMP_DEFAULT_MAXREPETITIONS 5
  42. #define SNMP_DEFAULT_MACREPEATERS   0
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46.     /* Parse the buffer pointed to by arg3, of length arg4, into pdu arg2.
  47.      *
  48.      * Returns the community of the incoming PDU, or NULL
  49.      */
  50.     u_char *snmp_parse(struct snmp_session *, struct snmp_pdu *,
  51. u_char *, int);
  52. /* Encode pdu arg2 into buffer arg3.  arg4 contains the size of
  53.  * the buffer.
  54.  */
  55.     int snmp_build(struct snmp_session *, struct snmp_pdu *,
  56. u_char *, int *);
  57. /*
  58.  * struct snmp_session *snmp_open(session)
  59.  *      struct snmp_session *session;
  60.  * 
  61.  * Sets up the session with the snmp_session information provided
  62.  * by the user.  Then opens and binds the necessary UDP port.
  63.  * A handle to the created session is returned (this is different than
  64.  * the pointer passed to snmp_open()).  On any error, NULL is returned
  65.  * and snmp_errno is set to the appropriate error code.
  66.  */
  67. #if 0
  68.     struct snmp_session *snmp_open(struct snmp_session *);
  69. /*
  70.  * int snmp_close(session)
  71.  *     struct snmp_session *session;
  72.  * 
  73.  * Close the input session.  Frees all data allocated for the session,
  74.  * dequeues any pending requests, and closes any sockets allocated for
  75.  * the session.  Returns 0 on error, 1 otherwise.
  76.  */
  77.     int snmp_close(struct snmp_session *);
  78. /*
  79.  * int snmp_send(session, pdu)
  80.  *     struct snmp_session *session;
  81.  *     struct snmp_pdu  *pdu;
  82.  * 
  83.  * Sends the input pdu on the session after calling snmp_build to create
  84.  * a serialized packet.  If necessary, set some of the pdu data from the
  85.  * session defaults.  Add a request corresponding to this pdu to the list
  86.  * of outstanding requests on this session, then send the pdu.
  87.  * Returns the request id of the generated packet if applicable, otherwise 1.
  88.  * On any error, 0 is returned.
  89.  * The pdu is freed by snmp_send() unless a failure occured.
  90.  */
  91.     int snmp_send(struct snmp_session *, struct snmp_pdu *);
  92. /*
  93.  * void snmp_read(fdset)
  94.  *     fd_set  *fdset;
  95.  * 
  96.  * Checks to see if any of the fd's set in the fdset belong to
  97.  * snmp.  Each socket with it's fd set has a packet read from it
  98.  * and snmp_parse is called on the packet received.  The resulting pdu
  99.  * is passed to the callback routine for that session.  If the callback
  100.  * routine returns successfully, the pdu and it's request are deleted.
  101.  */
  102.     void snmp_read(fd_set *);
  103. /*
  104.  * int snmp_select_info(numfds, fdset, timeout, block)
  105.  * int *numfds;
  106.  * fd_set   *fdset;
  107.  * struct timeval *timeout;
  108.  * int *block;
  109.  *
  110.  * Returns info about what snmp requires from a select statement.
  111.  * numfds is the number of fds in the list that are significant.
  112.  * All file descriptors opened for SNMP are OR'd into the fdset.
  113.  * If activity occurs on any of these file descriptors, snmp_read
  114.  * should be called with that file descriptor set.
  115.  *
  116.  * The timeout is the latest time that SNMP can wait for a timeout.  The
  117.  * select should be done with the minimum time between timeout and any other
  118.  * timeouts necessary.  This should be checked upon each invocation of select.
  119.  * If a timeout is received, snmp_timeout should be called to check if the
  120.  * timeout was for SNMP.  (snmp_timeout is idempotent)
  121.  *
  122.  * Block is 1 if the select is requested to block indefinitely, rather than time out.
  123.  * If block is input as 1, the timeout value will be treated as undefined, but it must
  124.  * be available for setting in snmp_select_info.  On return, if block is true, the value
  125.  * of timeout will be undefined.
  126.  *
  127.  * snmp_select_info returns the number of open sockets.  (i.e. The number of sessions open)
  128.  */
  129.     int snmp_select_info(int *, fd_set *, struct timeval *, int *);
  130. /*
  131.  * void snmp_timeout();
  132.  * 
  133.  * snmp_timeout should be called whenever the timeout from snmp_select_info expires,
  134.  * but it is idempotent, so snmp_timeout can be polled (probably a cpu expensive
  135.  * proposition).  snmp_timeout checks to see if any of the sessions have an
  136.  * outstanding request that has timed out.  If it finds one (or more), and that
  137.  * pdu has more retries available, a new packet is formed from the pdu and is
  138.  * resent.  If there are no more retries available, the callback for the session
  139.  * is used to alert the user of the timeout.
  140.  */
  141.     void snmp_timeout(void);
  142. /*
  143.  * This routine must be supplied by the application:
  144.  *
  145.  * int callback(operation, session, reqid, pdu, magic)
  146.  * int operation;
  147.  * struct snmp_session *session;    The session authenticated under.
  148.  * int reqid;                       The request id of this pdu (0 for TRAP)
  149.  * struct snmp_pdu *pdu;            The pdu information.
  150.  * void *magic                      A link to the data for this routine.
  151.  *
  152.  * Returns 1 if request was successful, 0 if it should be kept pending.
  153.  * Any data in the pdu must be copied because it will be freed elsewhere.
  154.  * Operations are defined below:
  155.  */
  156.     void snmp_api_stats(void *);
  157. #endif
  158. #ifdef __cplusplus
  159. }
  160. #endif
  161. #endif /* _SNMP_API_H_ */