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

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: snmp_api_util.h,v 1.3 1998/09/23 17:20:01 wessels Exp $
  3.  */
  4. #ifndef _SNMP_API_UTIL_H_
  5. #define _SNMP_API_UTIL_H_
  6. /***********************************************************
  7. Copyright 1997 by Carnegie Mellon University
  8.                       All Rights Reserved
  9. Permission to use, copy, modify, and distribute this software and its 
  10. documentation for any purpose and without fee is hereby granted, 
  11. provided that the above copyright notice appear in all copies and that
  12. both that copyright notice and this permission notice appear in 
  13. supporting documentation, and that the name of CMU not be
  14. used in advertising or publicity pertaining to distribution of the
  15. software without specific, written prior permission.  
  16. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  17. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  18. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  19. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  21. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  22. SOFTWARE.
  23. ******************************************************************/
  24. /*
  25.  * snmp_api_util.h - API management.
  26.  * Didier DESIDERIO (SINFOR) - November 26th, 1997
  27.  */
  28. #define PACKET_LENGTH 4500
  29. /*
  30.  * A list of all the outstanding requests for a particular session.
  31.  */
  32. struct request_list {
  33.     struct request_list *next_request;
  34.     int request_id; /* request id */
  35.     int retries; /* Number of retries */
  36.     u_int timeout; /* length to wait for timeout */
  37.     struct timeval time; /* Time this request was made */
  38.     struct timeval expire; /* time this request is due to expire */
  39.     struct snmp_pdu *pdu; /* The pdu for this request (saved so it can be retransmitted */
  40. };
  41. /*
  42.  * The list of active/open sessions.
  43.  */
  44. struct session_list {
  45.     struct session_list *next;
  46.     struct snmp_session *session;
  47.     struct snmp_internal_session *internal;
  48. };
  49. struct snmp_internal_session {
  50.     int sd; /* socket descriptor for this connection */
  51.     ipaddr addr; /* address of connected peer */
  52.     struct request_list *requests; /* Info about outstanding requests */
  53. };
  54. /* Define these here, as they aren't defined normall under
  55.  * cygnus Win32 stuff.
  56.  */
  57. #undef timercmp
  58. #define timercmp(tvp, uvp, cmp)         
  59.   (((tvp)->tv_sec) cmp ((uvp)->tv_sec)) ||  
  60.   ((((tvp)->tv_sec) == ((uvp)->tv_sec)) &&  
  61.    (((tvp)->tv_usec) cmp ((uvp)->tv_usec)))
  62. #undef timerclear
  63. #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0
  64. #undef timerisset
  65. #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
  66. #ifdef HAVE_SRAND
  67. #define random rand
  68. #define srandom srand
  69. #endif /* HAVE_SRAND */
  70. #ifdef __cplusplus
  71. extern "C" {
  72. #endif
  73.     int snmp_get_socket_session(struct snmp_session *session_);
  74.     int snmp_select_info_session(struct snmp_session *session_, struct timeval *timeout);
  75.     int snmp_timeout_session(struct snmp_session *sp_);
  76. #ifdef __cplusplus
  77. }
  78. #endif
  79. #endif /* _SNMP_API_UTIL_H_ */