@@ -79,9 +79,6 @@ static void stats_l_list(struct Client *s, const char *, bool, bool, rb_dlink_li
79
79
static void stats_l_client (struct Client * source_p , struct Client * target_p ,
80
80
char statchar );
81
81
82
- static int stats_spy (struct Client * , char , const char * );
83
- static void stats_p_spy (struct Client * );
84
-
85
82
typedef void (* handler_t )(struct Client * source_p );
86
83
typedef void (* handler_parv_t )(struct Client * source_p , int parc , const char * parv []);
87
84
@@ -206,7 +203,6 @@ m_stats(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
206
203
static time_t last_used = 0 ;
207
204
struct stats_cmd * cmd ;
208
205
unsigned char statchar ;
209
- int did_stats = 0 ;
210
206
211
207
statchar = parv [1 ][0 ];
212
208
@@ -229,14 +225,6 @@ m_stats(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
229
225
if (hunt_server (client_p , source_p , ":%s STATS %s :%s" , 2 , parc , parv ) != HUNTED_ISME )
230
226
return ;
231
227
232
- if (tolower (statchar ) != 'l' )
233
- /* FIXME */
234
- did_stats = stats_spy (source_p , statchar , NULL );
235
-
236
- /* if did_stats is true, a module grabbed this STATS request */
237
- if (did_stats )
238
- goto stats_out ;
239
-
240
228
/* Look up */
241
229
cmd = & stats_cmd_table [statchar ];
242
230
if (cmd -> handler != NULL )
@@ -272,7 +260,7 @@ m_stats(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
272
260
}
273
261
274
262
stats_out :
275
- /* Send the end of stats notice, and the stats_spy */
263
+ /* Send the end of stats notice */
276
264
sendto_one_numeric (source_p , RPL_ENDOFSTATS ,
277
265
form_str (RPL_ENDOFSTATS ), statchar );
278
266
}
@@ -817,8 +805,6 @@ stats_operedup (struct Client *source_p)
817
805
818
806
sendto_one_numeric (source_p , RPL_STATSDEBUG ,
819
807
"p :%u staff members" , count );
820
-
821
- stats_p_spy (source_p );
822
808
}
823
809
824
810
static void
@@ -1515,7 +1501,6 @@ stats_ltrace(struct Client *source_p, int parc, const char *parv[])
1515
1501
}
1516
1502
else if (target_p != NULL )
1517
1503
{
1518
- stats_spy (source_p , statchar , target_p -> name );
1519
1504
stats_l_client (source_p , target_p , statchar );
1520
1505
}
1521
1506
else
@@ -1534,8 +1519,6 @@ stats_ltrace(struct Client *source_p, int parc, const char *parv[])
1534
1519
doall = true;
1535
1520
}
1536
1521
1537
- stats_spy (source_p , statchar , name );
1538
-
1539
1522
if (ConfigFileEntry .stats_l_oper_only != STATS_L_OPER_ONLY_NO && !IsOperGeneral (source_p ))
1540
1523
{
1541
1524
if (doall && MyClient (source_p ))
@@ -1659,44 +1642,3 @@ stats_comm(struct Client *source_p)
1659
1642
{
1660
1643
rb_dump_fd (rb_dump_fd_callback , source_p );
1661
1644
}
1662
-
1663
- /*
1664
- * stats_spy
1665
- *
1666
- * inputs - pointer to client doing the /stats
1667
- * - char letter they are doing /stats on
1668
- * output - none
1669
- * side effects -
1670
- * This little helper function reports to opers if configured.
1671
- */
1672
- static int
1673
- stats_spy (struct Client * source_p , char statchar , const char * name )
1674
- {
1675
- hook_data_int data ;
1676
-
1677
- data .client = source_p ;
1678
- data .arg1 = name ;
1679
- data .arg2 = (int ) statchar ;
1680
- data .result = 0 ;
1681
-
1682
- call_hook (doing_stats_hook , & data );
1683
-
1684
- return data .result ;
1685
- }
1686
-
1687
- /* stats_p_spy()
1688
- *
1689
- * input - pointer to client doing stats
1690
- * ouput -
1691
- * side effects - call hook doing_stats_p
1692
- */
1693
- static void
1694
- stats_p_spy (struct Client * source_p )
1695
- {
1696
- hook_data data ;
1697
-
1698
- data .client = source_p ;
1699
- data .arg1 = data .arg2 = NULL ;
1700
-
1701
- call_hook (doing_stats_p_hook , & data );
1702
- }
0 commit comments