FACT++  1.0
void dis_set_client_exit_handler ( int  conn_id,
int  tag 
)

Definition at line 3133 of file dis.c.

References add_exit_handler_item(), find_exit_handler_item(), and rem_exit_handler_item().

Referenced by dis_hash_print().

3134 {
3135  EXIT_H *exitp;
3136 
3137  if(tag)
3138  {
3139  add_exit_handler_item(conn_id, tag);
3140  }
3141  else
3142  {
3143  if((exitp = find_exit_handler_item(conn_id)))
3144  rem_exit_handler_item(exitp);
3145  }
3146 }
static void rem_exit_handler_item(EXIT_H *exitp)
Definition: dis.c:3073
static EXIT_H * find_exit_handler_item(int conn_id)
Definition: dis.c:3087
static void add_exit_handler_item(int conn_id, int tag)
Definition: dis.c:3043
Definition: dis.c:131

+ Here is the call graph for this function:

+ Here is the caller graph for this function: