diff options
| author | paul <paul> | 2003-06-19 01:21:07 +0000 | 
|---|---|---|
| committer | paul <paul> | 2003-06-19 01:21:07 +0000 | 
| commit | dd488a78add05f10f58f4096dca622c6b5f1f0c9 (patch) | |
| tree | 22c986ccc07a5378e5b99fcdf32cc953c841b8d8 /lib/smux.c | |
| parent | 3db0a77852cc0de1385f7046355321229a567924 (diff) | |
2003-06-19 Paul Jakma <paul@dishone.st>
	* Fix lib/smux.c's reliance on daemons exporting struct
          thread_master *master.
Diffstat (limited to 'lib/smux.c')
| -rw-r--r-- | lib/smux.c | 12 | 
1 files changed, 9 insertions, 3 deletions
| @@ -29,7 +29,6 @@  #include <snmp.h>  #include <snmp_impl.h> -#include "smux.h"  #include "log.h"  #include "thread.h"  #include "linklist.h" @@ -37,6 +36,7 @@  #include "version.h"  #include "memory.h"  #include "sockunion.h" +#include "smux.h"  #define min(A,B) ((A) < (B) ? (A) : (B)) @@ -81,6 +81,9 @@ struct cmd_node smux_node =    SMUX_NODE,    ""                            /* SMUX has no interface. */  }; + +/* thread master */ +static struct thread_master *master;  void *  oid_copy (void *dest, void *src, size_t size) @@ -1224,7 +1227,7 @@ smux_stop ()      }  } -extern struct thread_master *master; +  void  smux_event (enum smux_event event, int sock) @@ -1471,7 +1474,7 @@ smux_tree_cmp(struct subtree *tree1, struct subtree *tree2)  /* Initialize some values then schedule first SMUX connection. */  void -smux_init (oid defoid[], size_t defoid_len) +smux_init (struct thread_master *tm, oid defoid[], size_t defoid_len)  {    /* Set default SMUX oid. */    smux_default_oid = defoid; @@ -1480,6 +1483,9 @@ smux_init (oid defoid[], size_t defoid_len)    smux_oid = smux_default_oid;    smux_oid_len = smux_default_oid_len;    smux_passwd = smux_default_passwd; + +  /* copy callers thread master */ +  master = tm;    /* Make MIB tree. */    treelist = list_new(); | 
