FACT++  1.0
int check_client ( REQUEST reqp,
int *  client_ids 
)

Definition at line 1699 of file dis.c.

References req_ent::conn_id.

Referenced by do_update_service().

1700 {
1701  if(!client_ids)
1702  return(1);
1703  while(*client_ids)
1704  {
1705  if(reqp->conn_id == *client_ids)
1706  {
1707  return(1);
1708  }
1709  client_ids++;
1710  }
1711  return(0);
1712 }
int conn_id
Definition: dis.c:55

+ Here is the caller graph for this function: