summaryrefslogtreecommitdiff
path: root/lib/smux.h
diff options
context:
space:
mode:
authorVincent Bernat <bernat@luffy.cx>2012-05-24 21:22:01 +0200
committerVincent Bernat <bernat@luffy.cx>2012-06-25 19:03:23 +0200
commit4b89e45d928d41bb5d32a00ba7b402d6a3bbdf44 (patch)
tree7471ad396e285ff5b0ca3d85600f3c184f43dd2c /lib/smux.h
parentd6be5fb9bc41ea77547204eeedd12132b26ad662 (diff)
smux: remove `tick` argument from smux_trap()
smux_trap() contains an argument whose use appears to be to set sysUpTime.0/timestamp field in SNMP trap. However, this value is not used in smux_trap(). Moreover, it is expected that this field is the value of sysUpTime.0 when the trap was sent and not any other time related to the trap. To avoid any confusion, we remove this field from the signature of the function.
Diffstat (limited to 'lib/smux.h')
-rw-r--r--lib/smux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/smux.h b/lib/smux.h
index 83ae56ce..78460e68 100644
--- a/lib/smux.h
+++ b/lib/smux.h
@@ -78,7 +78,7 @@ extern int smux_header_generic (struct variable *, oid [], size_t *,
int, size_t *, WriteMethod **);
extern int smux_trap (const oid *, size_t, const oid *, size_t,
const struct trap_object *,
- size_t, unsigned int, u_char);
+ size_t, u_char);
extern int oid_compare (oid *, int, oid *, int);
extern void oid2in_addr (oid [], int, struct in_addr *);