Deleted Added
full compact
snmppriv.h (133212) snmppriv.h (216294)
1/*
2 * Copyright (c) 2001-2003
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 *
6 * Author: Harti Brandt <harti@freebsd.org>
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * $Begemot: bsnmp/lib/snmppriv.h,v 1.9 2004/08/06 08:46:58 brandt Exp $
30 *
31 * Private functions.
32 */
33#include <sys/cdefs.h>
34
35enum asn_err snmp_binding_encode(struct asn_buf *, const struct snmp_value *);
36enum snmp_code snmp_pdu_encode_header(struct asn_buf *, struct snmp_pdu *);
1/*
2 * Copyright (c) 2001-2003
3 * Fraunhofer Institute for Open Communication Systems (FhG Fokus).
4 * All rights reserved.
5 *
6 * Author: Harti Brandt <harti@freebsd.org>
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * $Begemot: bsnmp/lib/snmppriv.h,v 1.9 2004/08/06 08:46:58 brandt Exp $
30 *
31 * Private functions.
32 */
33#include <sys/cdefs.h>
34
35enum asn_err snmp_binding_encode(struct asn_buf *, const struct snmp_value *);
36enum snmp_code snmp_pdu_encode_header(struct asn_buf *, struct snmp_pdu *);
37enum snmp_code snmp_fix_encoding(struct asn_buf *, const struct snmp_pdu *);
38enum asn_err snmp_parse_message_hdr(struct asn_buf *b, struct snmp_pdu *pdu,
39 asn_len_t *lenp);
37enum snmp_code snmp_fix_encoding(struct asn_buf *, struct snmp_pdu *);
40enum asn_err snmp_parse_pdus_hdr(struct asn_buf *b, struct snmp_pdu *pdu,
41 asn_len_t *lenp);
42
38enum asn_err snmp_parse_pdus_hdr(struct asn_buf *b, struct snmp_pdu *pdu,
39 asn_len_t *lenp);
40
41void snmp_pdu_init_secparams(struct snmp_pdu *, struct snmp_engine *,
42 struct snmp_user *);
43
44enum snmp_code snmp_pdu_calc_digest(struct asn_buf *, const struct snmp_pdu *,
45 uint8_t *);
46enum snmp_code snmp_pdu_encrypt(struct asn_buf *, const struct snmp_pdu *);
47enum snmp_code snmp_pdu_decrypt(struct asn_buf *, const struct snmp_pdu *);
48
43#define DEFAULT_HOST "localhost"
44#define DEFAULT_PORT "snmp"
45#define DEFAULT_LOCAL "/var/run/snmp.sock"
49#define DEFAULT_HOST "localhost"
50#define DEFAULT_PORT "snmp"
51#define DEFAULT_LOCAL "/var/run/snmp.sock"