-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
1759 lines (1223 loc) · 72.6 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-10-27 Gavin Hurlbut <[email protected]>
* configure.ac: Release 0.4 change
* scripts/gitlog2changelog.py, scripts/mkrelease: Change mkrelease to use
git. Added gitlog2changelog.py
2009-10-26 Gavin Hurlbut <[email protected]>
* scripts/tagversion: Change tagversion to create git versions rather than
svn
2007-09-18 Gavin Hurlbut <[email protected]>
* bot/src/plugins/burp.lua, bot/src/plugins/fart.c: Added , to the fart and
burp regexps (as an optional ending)
2007-09-11 Gavin Hurlbut <[email protected]>
* bot/src/plugins/Makefile.in: Make the install-data, install-exec, uninstall
not barf in no files are to be installed/uninstalled.
2007-08-01 Gavin Hurlbut <[email protected]>
* web/templates/footer.php: Added a comment to the Google Ads chunk
* web/templates/footer.php: Comment out the google ads
* web/templates/footer.php, web/templates/header.php: Check in the header and
footer (need to subsequently disable the google ads code)
* web/templates/channel.php: Added count of users to the channel log display
* web/includes/irc_channels.php: Actually check that the nick is still
present (after carefully calculating it)
2007-07-19 Gavin Hurlbut <[email protected]>
* bot/src/Makefile.in, bot/src/main.c: Added logging of CFLAGS and LDFLAGS.
* bot/include/structs.h, bot/src/bot.c, bot/src/curses.c, bot/src/mysql.c:
Added "New Server" and "New Channel"
2007-07-18 Gavin Hurlbut <[email protected]>
* bot/src/plugins/mailbox.c, bot/src/plugins/trac.c, bot/src/plugins/url.c:
Added "New URL Keyword" to url plugin
2007-07-17 Gavin Hurlbut <[email protected]>
* bot/src/plugins/trac.c: Added "New Trac Setuo" to trac plugin
* bot/include/protos.h, bot/src/curses.c, bot/src/main.c: Added a "Reload
All" to the system menu (does a SIGHUP to the main thread)
* bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c: Added "New Mailbox"
and "New Report" to the mailbox plugin
* bot/src/plugins/rssfeed.c: Make rssfeed menu text use a %*d to indicate
width of the feed ID, making it sort "numerically" as " 9" < "10"
* bot/include/protos.h, bot/include/structs.h, bot/src/curses.c,
bot/src/main.c, bot/src/mysql.c, bot/src/plugins/core.c,
bot/src/plugins/luascript.c, bot/src/plugins/mailbox.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c, bot/src/plugins/url.c:
Added a "New RSS Feed" entry to rssfeed. Changed the "term" version to be
"TERM". Added passing in the insertid on mysql queries.
2007-07-16 Gavin Hurlbut <[email protected]>
* bot/src/curses.c: Tweaked the log scrollbars a bit. Vertical scrollbar no
longer uses floating point math.
* bot/include/structs.h, bot/src/curses.c, bot/src/main.c: Added the TERM
environment variable as a version string, added F1/F2 to scroll logs left and
right by half a screen (respectively)
2007-07-15 Gavin Hurlbut <[email protected]>
* bot/src/plugins/mailbox.c: Regenerate the mailbox report menutext if the
serverId changed
* bot/include/protos.h, bot/src/bot.c, bot/src/plugins/mailbox.c: Added
FindServerWithChannel() to bot.c. Removed the serverid field from
plugin_mailbox_report, if the nick is set, then channelId is actually the
serverId.
* bot/src/plugins/mailbox.c: Argh. Forgot to put the primary keys in the
default schema, only had them in the upgrade queries.
* bot/src/plugins/trac.c: Removed the serverid field from plugin_trac as it's
pointless, that data's in channels
* bot/src/plugins/mailbox.c: Add in the primary keys (oops, missed it)
* bot/src/curses.c, bot/src/plugins/url.c: Added the menu to the URL plugin.
Made the text items max out to window width.
2007-07-14 Gavin Hurlbut <[email protected]>
* bot/src/plugins/mailbox.c: Added server/channel disable callbacks for the
mailbox plugin
* bot/include/balanced_btree.h, bot/src/balanced_btree.c, bot/src/bot.c,
bot/src/plugins/rssfeed.c: Made callbacks for the rssfeed plugin to stop
referencing disabled server or channel structures
2007-07-13 Gavin Hurlbut <[email protected]>
* bot/include/protos.h, bot/src/bot.c, bot/src/thread_api.c: Added functions
to call back into threads when channels/servers disabled
* bot/include/protos.h, bot/include/structs.h, bot/src/authenticate.c,
bot/src/bot.c, bot/src/curses.c, bot/src/logging.c, bot/src/main.c,
bot/src/mysql.c, bot/src/notice.c, bot/src/plugins/dns.c,
bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c,
bot/src/thread_api.c: Split out the thread callbacks into a new structure
which will also have in it new callbacks for when servers and channels are
disabled
* bot/src/bot.c, bot/src/curses.c, bot/src/mysql.c, bot/src/transmit.c: Fixed
the save to db for servers. Rssfeed and other users of server info will need
revisiting to deal with disabled server/channel
* bot/src/botnet-1.6.4/makelib/botnet.c: Added more checks for closed
connection before the select and recv
* bot/include/protos.h, bot/include/structs.h, bot/src/bot.c,
bot/src/mysql.c: Added save to db support for servers. Disabling a server
currently is borked, kills the ncurses output thread.
* bot/include/protos.h, bot/include/structs.h, bot/src/bot.c, bot/src/main.c,
bot/src/mysql.c, bot/src/plugins/mailbox.c, bot/src/plugins/trac.c: Added
save to db support for channels
* bot/src/plugins/trac.c: Added save to db functionality to trac
* bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c: Added save to db
capability to rssfeed
2007-07-12 Gavin Hurlbut <[email protected]>
* bot/src/plugins/mailbox.c: Added save functionality for the mailbox reports
* bot/src/curses.c: Fixed the removal of trailing spaces (stupid fence-posts)
* bot/src/curses.c: Strip trailing spaces when saving strings
* bot/src/plugins/mailbox.c: Added support to save the mailbox definition to
the db, and reload. Still need to do so for mailbox reports
2007-07-08 Gavin Hurlbut <[email protected]>
* bot/src/plugins/trac.c: Added the form for Trac plugin
* bot/include/structs.h, bot/src/curses.c, bot/src/plugins/rssfeed.c: Added
the RSSFeed form
* bot/src/curses.c: Removed the calls to cursesAtExit in the
curses_output_thread as it's now being called from the main shutdown process.
* bot/include/protos.h, bot/src/curses.c, bot/src/main.c,
bot/src/plugins/mailbox.c: Added a form for mailbox reports. Attempt to call
cursesAtExit from the shutdown procedures.
* bot/include/structs.h, bot/src/curses.c, bot/src/plugin_api.c,
bot/src/plugins/luascript.c, bot/src/plugins/mailbox.c: Added menus for
luascript and mailbox. Seems to want to exit in the middle of the screen
again. grrr.
* bot/include/protos.h, bot/include/structs.h, bot/src/bot.c,
bot/src/curses.c, bot/src/mysql.c, bot/src/plugin_api.c: Factored out
cursesSaveOffset. Added details for the plugin menu
* bot/include/structs.h, bot/src/curses.c, bot/src/mysql.c: Removed the
Database main menu, put the db stuff into System. Implemented the Database
Schema screen.
* bot/include/environment.h, bot/include/structs.h, bot/src/bot.c,
bot/src/curses.c: Added the server number to the channel form.
2007-07-07 Gavin Hurlbut <[email protected]>
* bot/include/structs.h, bot/src/bot.c, bot/src/curses.c, bot/src/mysql.c:
Added beginning of the channels form, still need the serverID connection
* bot/include/protos.h, bot/include/structs.h, bot/src/bot.c,
bot/src/curses.c: Put in hooks for saving data, still need to find a way to
actually RELOAD the new data, and save to SQL
* bot/include/protos.h, bot/include/structs.h, bot/src/bot.c,
bot/src/curses.c: Further generalized the server form so other forms can use
the same code. Still need to implement the save though.
* bot/include/environment.h, bot/include/structs.h, bot/src/curses.c:
Generalized the server form stuff so it can be further generalized to support
other forms
* bot/src/plugins/Makefile.in: Fix the include path for trac plugin
* bot/src/Makefile.in, bot/src/plugin_api.c: Bah. plugin_api.c won't compile
quietly on gcc4.1 as it's uber-picky about the type-punning on the dlsym
calls... so disable that warning for that file.
* bot/src/plugin_api.c: Attempt to shut gcc4.1 up
* configure, configure.ac, configure.ac.in: Trying this in another order to
see if autoconf 2.61 is happier
* bot/include/structs.h, bot/src/curses.c: Added a scrollbar to the logs
* bot/src/curses.c: Fixed the pagination of forms to properly paginate at
buttons
* bot/include/environment.h, bot/src/curses.c: Make details windows
(non-form) scrollable if necessary
2007-07-06 Gavin Hurlbut <[email protected]>
* bot/src/curses.c: Fixed a weird coredump when resizing massively (i.e.
while screen was detached and the screen size was changed, then screen
reattached).
* bot/src/curses.c: Forms will now automatically spit into pages if needed
2007-07-05 Gavin Hurlbut <[email protected]>
* bot/include/protos.h, bot/include/structs.h, bot/src/curses.c: Added button
functionality to the forms. Implemented a revert function for servers.
* bot/include/protos.h, bot/include/structs.h, bot/src/curses.c: Added
checkbox support to the forms. Added function callbacks when changes are
made, currently not using them.
* bot/src/curses.c: Fixed refresh of forms jumping back to the first field.
Added a field hook that would update the strings on refresh. Still need a
callback into the core code for any changes.
* bot/src/curses.c: Make it actually clean up forms when we exit them
2007-07-04 Gavin Hurlbut <[email protected]>
* bot/src/curses.c: Remove the cursor when leaving a form
* bot/src/curses.c: Removed ugly 0 padding on numeric fields
* bot/include/protos.h, bot/include/structs.h, bot/src/Makefile.in,
bot/src/curses.c, bot/src/main.c, bot/src/mysql.c: Added the first try at
using forms. Added a form for server details. Still need to do something
with changed values.
2007-07-03 Gavin Hurlbut <[email protected]>
* bot/src/main.c: Ooops, typo in the about screen
* bot/src/curses.c, bot/src/main.c: Added more lines to make the screen look
nicer. Filled in the tailer line
* bot/src/curses.c, bot/src/logging.c, bot/src/thread_api.c: We do NOT want a
curses console when in detached daemon mode
* bot/src/main.c: Added a check for pthreads being NPTL, and added it to the
versions menu
* bot/include/protos.h, bot/src/bot.c,
bot/src/botnet-1.6.4/makelib/includes.h, bot/src/main.c, bot/src/mysql.c,
bot/src/plugins/dns.c, bot/src/plugins/luascript.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c, bot/src/plugins/url.c,
bot/src/regexp.c: Added a pile of version strings in the "System->Versions"
menu item
* bot/src/curses.c: Fixed the hyphenation to work with or without trailing
whitespace if the string needs it.
* bot/src/curses.c, bot/src/main.c: Split the "About" page into "About" and
"Licensing".
* bot/include/protos.h, bot/include/structs.h, bot/src/curses.c,
bot/src/main.c: Added several alignment choices for menu text. Added an
about entry in the system menu
2007-07-01 Gavin Hurlbut <[email protected]>
* bot/src/curses.c, bot/src/plugins/trac.c, bot/src/plugins/url.c: Make the
menu revert to main menu if the current menu is removed. Added skeleton
menus for trac and url
* bot/src/plugins/rssfeed.c: Added rssfeed menu skeleton
* bot/src/mysql.c, bot/src/plugin_api.c: Make the plugins menu have ALL the
plugins, not just the loaded ones
* bot/src/mysql.c, bot/src/plugins/mailbox.c: Added the mailbox menu item
(still no actions)
* bot/src/curses.c: Ooops! Try recursing down left & right, not left & left
* bot/include/protos.h, bot/src/curses.c, bot/src/plugins/luascript.c: Added
skeleton menu to luascript plugin
* bot/include/protos.h, bot/include/structs.h, bot/src/bot.c,
bot/src/curses.c, bot/src/mysql.c, bot/src/plugin_api.c: Populated the server
and channel menus. Fixed reload.
* bot/include/protos.h, bot/include/structs.h, bot/src/curses.c,
bot/src/main.c, bot/src/plugin_api.c, bot/src/thread_api.c: Menus functional,
added Ctrl-R for reload (still a bit funky), added plugin menu details
2007-06-30 Gavin Hurlbut <[email protected]>
* bot/include/protos.h, bot/include/structs.h, bot/src/curses.c,
bot/src/logging.c, bot/src/main.c: First crack at the ncurses menus. Haven't
implemented the second-level menu stuff quite yet. ncurses logging is
working (so far) complete with scrollback.
2007-06-29 Gavin Hurlbut <[email protected]>
* bot/src/Makefile.in, bot/src/curses.c: Beginnings of the ncurses console
code. Still need to code the menus.
* configure.ac, configure.ac.in: Release 0.3 tagging
* bot/src/main.c: Superficial change. Just needed to mark that this closes
#23
* bot/src/plugins/core.c: Changed the symbol command to use uintptr_t so it
SHOULD work in either 64-bit or 32-bit platforms
* bot/src/plugins/mailbox.c: Make mailbox close and reopen should the mailbox
serverSpec change during reload
* bot/include/protos.h, bot/include/structs.h, bot/src/bot.c,
bot/src/bot_cmds.c, bot/src/main.c, bot/src/mysql.c, bot/src/transmit.c:
Added SIGHUP support for reloading servers/channels
2007-06-28 Gavin Hurlbut <[email protected]>
* bot/src/plugins/mailbox.c: Removed a log message
* bot/src/mysql.c, bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c,
bot/src/plugins/trac.c: Added SIGHUP support to the mailbox plugin. Removed
potential memory leak in SIGHUP support functions.
2007-06-27 Gavin Hurlbut <[email protected]>
* bot/src/botnet-1.6.4/makelib/botnet.c, bot/src/plugins/burp.lua,
bot/src/plugins/fart.c, bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c,
bot/src/regexp.c: Added /g functionality to regexp. Added \B to regexps to
match beginning of words. Added SIGHUP reloading for rssfeed.
* bot/src/bot.c, bot/src/bot_cmds.c, bot/src/botnet-1.6.4/makelib/botnet.c,
bot/src/main.c, bot/src/plugins/core.c, bot/src/plugins/luascript.c,
bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c: Plugged more memory
leaks. Added the "symbol" command in core.
* bot/include/protos.h, bot/include/structs.h, bot/src/bot.c, bot/src/main.c,
bot/src/mysql.c, bot/src/plugins/dns.c, bot/src/plugins/rssfeed.c,
bot/src/plugins/trac.c, bot/src/queue.c, bot/src/transmit.c: Changed from
ServerList to ServerTree. Minor memory leak fixes.
* bot/include/protos.h, bot/include/structs.h, bot/src/main.c,
bot/src/mysql.c, bot/src/plugin_api.c, bot/src/plugins/trac.c: Added the
SIGHUP reloading of plugins. Added trimming out no-longer configured trac
setups.
* bot/src/plugins/trac.c: Added reload functionality in the trac thread (for
SIGHUP)
2007-06-26 Gavin Hurlbut <[email protected]>
* bot/include/protos.h, bot/include/structs.h, bot/src/authenticate.c,
bot/src/bot.c, bot/src/main.c, bot/src/plugins/mailbox.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c: Changed the handler
callbacks to have only one void * argument. Made trac thread be persistent
so it can regenerate the channel regexp after SIGHUP
* bot/include/protos.h, bot/include/structs.h, bot/src/authenticate.c,
bot/src/bot.c, bot/src/logging.c, bot/src/main.c, bot/src/mysql.c,
bot/src/notice.c, bot/src/plugins/dns.c, bot/src/plugins/mailbox.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c, bot/src/thread_api.c:
Added starting sighup handlers to several tasks. Added an "arg" to be passed
into the signal handlers to distinguish between threads that have the same
code footprint.
* bot/src/Makefile.in, bot/src/main.c, bot/src/plugins/Makefile.in,
bot/src/plugins/trac.c, bot/src/plugins/url.c, bot/src/thread_api.c: Make
signal_interrupt deregister itself so a second Ctrl-C will instantly exit.
Added a thread_join to thread_deregister, tweaked some thread shutdowns. Use
curl_global_init() in main.c (yuck) as it's not thread-safe.
* bot/src/bot.c, bot/src/logging.c, bot/src/main.c, bot/src/plugin_api.c,
bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c, bot/src/queue.c,
bot/src/transmit.c: Attempting to clean up the occasional coredump on
shutdown. Seems to happen now whenever the url plugin is enabled with
others, not sure why.
* bot/include/protos.h, bot/src/logging.c, bot/src/main.c: Added a handler
for SIGSEGV, SIGILL, SIGFPE
* bot/include/protos.h, bot/include/structs.h, bot/src/authenticate.c,
bot/src/bot.c, bot/src/logging.c, bot/src/main.c, bot/src/mysql.c,
bot/src/notice.c, bot/src/plugins/dns.c, bot/src/plugins/mailbox.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c, bot/src/thread_api.c:
Added SIGUSR2 which will give a backtrace in each thread. Added SIGHUP with
per-thread handling callbacks, set all current threads to no handler
2007-06-24 Gavin Hurlbut <[email protected]>
* bot/include/config.h.in, bot/src/plugins/plugin_list.h: ran autoheader to
recreate config.h.in. Make the plugin definition table depend on the
PLUGIN_* defines in config.h
* bot/include/db_schema.h, bot/include/structs.h, bot/src/bot.c,
bot/src/mysql.c, bot/src/mysql_upgrade.c, bot/src/plugins/mailbox.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c, bot/src/plugins/url.c:
Added enabled fields to: channels, servers, plugin_mailbox,
plugin_mailbox_report, plugin_rssfeed, plugin_trac, plugin_url_keywords
2007-06-23 Gavin Hurlbut <[email protected]>
* bot/include/db_schema.h, bot/include/protos.h, bot/include/structs.h,
bot/src/main.c, bot/src/mysql_upgrade.c, bot/src/plugins/luascript.c,
bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c,
bot/src/plugins/url.c: Factored out the db_check_schema and db_upgrade_schema
code so it's common code
* bot/src/bot.c, bot/src/main.c, bot/src/plugin_api.c,
bot/src/plugins/Makefile.in, bot/src/plugins/dns.c, bot/src/plugins/trac.c,
bot/src/queue.c, bot/src/transmit.c: Make shutdown unload all plugins first.
Close server sockets from the dying transmit thread to wake up server threads
so they can die. Switched trac plugin to use -lapr-1 and -laprutil-1.
2007-06-22 Gavin Hurlbut <[email protected]>
* configure.ac: Release 0.2
* bot/Makefile, bot/src/Makefile.in, bot/src/plugins/Makefile.in: Make it so
make distclean also removes the .d files
* bot/Makefile, bot/src/Makefile.in, bot/src/plugins/Makefile.in,
web/Makefile.in: Implemented make distclean properly
* configure, configure.ac, configure.ac.in: Added in the check for
libc-client by creating a new macro
* configure, configure.ac, configure.ac.in, scripts/tagversion: Added library
checks for all but libc-client which won't behave. Changed tagversion to look
for configure.ac.in
* bot/src/plugins/Makefile.in: Fixed a typo
* configure, configure.ac, configure.ac.in: Renamed the plugin disables to
--disable-plugin-xxxx
2007-06-21 Gavin Hurlbut <[email protected]>
* Makefile.in, bot/include/config.h.in, bot/src/plugins/Makefile.in,
configure, configure.ac, configure.ac.in: Added the ability to disable
compilation of each plugin to ./configure
* bot/src/plugins/url.c: Updated the help for url
* bot/src/plugins/url.c: Added !url - list
* bot/src/plugins/url.c: Added url logging, !url - search string and !url -
last
* bot/src/plugins/Makefile.in, bot/src/plugins/plugin_list.h,
bot/src/plugins/url.c: Added the url plugin. Closes #21
* bot/src/plugins/rssfeed.c: Fixed a typo
* bot/src/plugins/core.c: Fix bug in seen when used in privmsg
* bot/src/plugins/Makefile.in, bot/src/plugins/datemsk.txt: Removed the now
not-used datemsk.txt file
* bot/src/plugins/Makefile.in, bot/src/plugins/rssfeed.c: Changed from using
getdate_r to using strptime with the format set per feed in the db.
2007-06-20 Gavin Hurlbut <[email protected]>
* bot/src/plugins/trac.c: Added some error messages and the command help for
trac
* bot/src/plugins/Makefile.in, bot/src/plugins/trac.c: trac plugin now gives
ticket details (gleaned from RSS and CSV pages)
2007-06-19 Gavin Hurlbut <[email protected]>
* bot/src/plugins/Makefile.in, bot/src/plugins/trac.c: Added the use of
libsvn (tested with 1.3) to get changeset details
* bot/docs/README.userauth: Added a superficial change
* bot/docs/README.userauth, bot/src/authenticate.c: Added documentation on
re-keying the auth, and fixed a crash bug in re-keying
2007-06-18 Gavin Hurlbut <[email protected]>
* bot/include/protos.h, bot/src/bot.c, bot/src/plugins/mailbox.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trac.c: Created FindServerNum() to
factor out some redundant code. Trac now uses the DB to indicate Trac URLs in
defined channels
* bot/src/plugins/Makefile.in, bot/src/plugins/plugin_list.h,
bot/src/plugins/trac.c: Added the beginning of the trac module, need to
reference the DB still
* bot/include/protos.h, bot/src/regexp.c: Added regexp_substring() to the
regexp core (results need to be freed)
2007-06-17 Gavin Hurlbut <[email protected]>
* bot/src/plugins/mailbox.c: Make the field parsing be non-destructive WRT
the format string. Ooops
2007-06-15 Gavin Hurlbut <[email protected]>
* bot/src/plugins/rssfeed.c: Added support for RSS feeds with HTTP auth
required
* bot/src/plugins/mailbox.c: Added the nulled row to the upgrade table
* bot/src/libmrss-0.12/src/mrss.h, bot/src/libmrss-0.12/src/mrss_download.c,
bot/src/libmrss-0.12/src/mrss_internal.h,
bot/src/libmrss-0.12/src/mrss_parser.c: Added support for using HTTP auth
(both basic and digest) to the mrss_parse_url by making mrss_parse_url_auth
* bot/src/plugins/mailbox.c: Added $TO$, $DATE$, $MESSAGEID$, $BODY$ parsing
* bot/src/bot.c: Make FindChannelNum actually abort gracefully if the servers
aren't loaded yet.
* bot/src/plugins/mailbox.c: Actually set the lastCheck in memory, make
lastCheck, lastRead time_t instead of int.
* bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c: Added the mailbox
command, still needs to enable/disable/list a report
* bot/src/plugins/mailbox.c: Only clear out the messageList if it exists!
stooopid!
* bot/src/plugins/mailbox.c: Cleaned up the logging for mailbox
* bot/src/plugins/mailbox.c: Now mailbox will actually parse the messages.
So far, $FROM$ and $SUBJECT$ are implemented
* bot/src/plugins/mailbox.c: Added in the mailbox code to actually get the
UIDs of the new mail, report it to users/channels Need to add in the
substitution of $SUBJECT$, $FROM$, $BODY$ etc.
2007-06-14 Gavin Hurlbut <[email protected]>
* bot/src/plugins/rssfeed.c: Free the structures in the btree when removing
rssfeed plugin
2007-06-13 Gavin Hurlbut <[email protected]>
* bot/src/Makefile.in, bot/src/plugins/Makefile.in: Cleaned up the CFLAGS and
LIBS a bit
2007-06-13 Chris Petersen <[email protected]>
* beirdobot.spec: add a couple more requirements to the proto-spec
2007-06-12 Gavin Hurlbut <[email protected]>
* bot/src/plugins/plugin_list.h: Added mailbox to the plugin_list
* bot/src/plugins/mailbox.c: Remove OP_HALFOPEN as pop3 will gack on it.
Check that the mail_open didn't return NULL.
* bot/src/plugins/mailbox.c, bot/src/plugins/rssfeed.c: Mailbox plugin now
polls email accounts, logs total/unread messages
* bot/src/balanced_btree.c: Removed a stupid bug in rebalancing an unlocked
tree
* bot/src/plugins/mailbox.c: Flesh out the mailbox plugin a bit before going
to bed.
* bot/src/plugins/Makefile.in: Removed blah.lua from the install as it's not
in svn now
2007-06-11 Gavin Hurlbut <[email protected]>
* bot/src/bot.c, bot/src/botnet-1.6.4/makelib/botnet.h: Changed the socket
timeout to 450s (7.5min) to avoid race condition with 5min PINGs. Made
ProcOnError actually log the error message so we can debug disconnections
* web/includes/irc_channels.php: Check if the server exists before
dereferencing it. If a server was deleted without deleting the channels, the
web frontend got bent
2007-06-10 Gavin Hurlbut <[email protected]>
* bot/src/mysql.c: Ooops, typo
* bot/src/mysql.c: Escape \ in SQL text too
2007-06-08 Gavin Hurlbut <[email protected]>
* bot/src/bot.c, bot/src/mysql.c: Add the query to the mysql error logging,
changed HISTORY_START to send "" as nick as NULL no workee
* bot/src/mysql.c: Move a malloc into the loop since the mysql thread now
frees the old block
* bot/src/mysql.c, bot/src/transmit.c: Added a couple frees... Plugging
memory leaks.
2007-05-17 Gavin Hurlbut <[email protected]>
* bot/src/plugins/Makefile.in, bot/src/plugins/mailbox.c: Began the core of a
mailbox plugin that will use UW's c-client library
2007-05-16 Gavin Hurlbut <[email protected]>
* bot/src/plugin_api.c, bot/src/plugins/core.c, bot/src/plugins/dns.c,
bot/src/plugins/fart.c, bot/src/plugins/luascript.c,
bot/src/plugins/plugin_list.h, bot/src/plugins/rssfeed.c,
bot/src/plugins/trout.c: Relicensed the plugin API and all plugins to be
under LGPL.
* COPYING, LICENSE.GPL, LICENSE.GPL2, LICENSE.LGPL: Added a new "COPYING"
file, and the LGPL license
* COPYING, LICENSE.GPL2: Renamed COPYING to LICENSE.GPL2
2007-05-09 Gavin Hurlbut <[email protected]>
* bot/src/plugins/blah.lua: Removed the test script
* bot/src/plugins/burp.lua, bot/src/plugins/luascript.c: Added the botCmd
linkage for lua
* bot/src/plugins/Makefile.in, bot/src/plugins/blah.lua,
bot/src/plugins/burp.lua, bot/src/plugins/luascript.c: Completed the
regexp_add linkage, tested with burp.lua
* bot/include/protos.h, bot/include/structs.h, bot/src/authenticate.c,
bot/src/bot_cmds.c, bot/src/plugin_api.c, bot/src/plugins/core.c,
bot/src/plugins/dns.c, bot/src/plugins/fart.c, bot/src/plugins/luascript.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trout.c, bot/src/regexp.c: changed
botCmd and regexp API to include a void *tag so the luascripts can share a
function
* bot/src/plugins/luascript.c: Added some cleanup code, added regexp and
command linked list (per-script)
* bot/src/plugins/blah.lua, bot/src/plugins/luascript.c: Added the beirdobot
LUA lib, created LogPrint and message sending wrappers
2007-05-07 Gavin Hurlbut <[email protected]>
* bot/src/plugins/Makefile.in, bot/src/plugins/blah.lua,
bot/src/plugins/luascript.c: Added a test LUA script, changed to use
"initialize" function at startup
* bot/src/plugins/luascript.c, bot/src/plugins/plugin_list.h: Added the first
shell for running the LUA scripts.
* bot/src/plugins/Makefile.in, bot/src/plugins/luascript.c: Added beginnings
of the luascript plugin
* bot/src/plugins/datemsk.txt: Added the datemask used by my fantasy baseball
transaction RSS
2007-04-19 Gavin Hurlbut <[email protected]>
* bot/src/mysql.c: Now detects SQL server disappearing on each query,
reconnects
2007-04-17 Gavin Hurlbut <[email protected]>
* bot/src/mysql.c: Added a comment so I don't forget the SELECT statement I
need to add later.
* bot/src/mysql.c, bot/src/plugins/datemsk.txt: Added code to do mysql_ping
if the session's been idle for >= 1h. This should fix the reported problem
where the session disappears and doesn't want to reconnect properly.
2006-10-03 Gavin Hurlbut <[email protected]>
* Makefile.in, configure, configure.ac: Rebuilt configure and Makefile.in on
breezy-build
* Makefile.local, bot/src/Makefile.in, configure.ac.in: Check mysql_config
for --libs_r or --libs for the Makefile
* bot/include/protos.h, bot/src/mysql.c: Added a stub mysql_thread_init() if
it doesn't exist (currently set to < 40000 )
* bot/include/structs.h: Changed the enum values to #define for the
MYSQL_TYPE_*
* bot/include/protos.h, bot/src/mysql.c: Make a mysql_get_server_version for
< 4.1.0
* bot/src/plugins/rssfeed.c: Fix the fullspec print in rssfeed
2006-09-29 Gavin Hurlbut <[email protected]>
* bot/src/plugins/rssfeed.c: OK, fixed that in a more sane way
* bot/src/plugins/rssfeed.c: Put in another null check in an attempt to get
rid of a core dump situation
* bot/src/bot.c: Start the transmit thread before the bot state machine to
avoid a race condition on the transmit queue startup
* bot/include/config.h.in, bot/src/mysql.c, configure, configure.ac,
configure.ac.in: Changed libmysql check to libmysqlclient in configure
Removed query logging
* bot/src/plugins/dns.c: Extended the timeout in the DNS thread on
pthread_cond_timewait to 1000ms to work around an apparent bug in glibc
2.3.5-1ubuntu1 (which debian may have fixed in 2.3.5-3)
2006-09-28 Gavin Hurlbut <[email protected]>
* bot/src/logging.c, bot/src/mysql.c, bot/src/plugins/core.c,
bot/src/plugins/dns.c, bot/src/plugins/rssfeed.c: Fixed the SQL stuff in
rssfeed and core pluging Starting to debug DNS thread failure that may
somehow be caused by new SQL stuff
* bot/include/db_schema.h, bot/include/protos.h, bot/include/structs.h,
bot/src/bot.c, bot/src/mysql.c, bot/src/mysql_upgrade.c,
bot/src/plugins/core.c, bot/src/plugins/rssfeed.c: Massive structure change
to allow for queuing SQL queries and dealing with the server in a separate
thread. Also switching to a prepared statements format, although at this
point, the queries are still premade as will be necessary for MySQL < 4.1.2
anyways. Fixed a small crash bug in thread shutdown when ServerList is still
NULL
2006-09-26 Gavin Hurlbut <[email protected]>
* bot/src/mysql.c: - fixed a table name in the db_check_plugins
* bot/include/db_schema.h, bot/src/mysql_upgrade.c: - Removed trailing ; from
queries. MySQL 3.23.x can't handle that.
2006-09-25 Gavin Hurlbut <[email protected]>
* bot/src/transmit.c: - strdup the channel string for transmits as well as
some are overwritten in the calling thread. Ooops.
* bot/src/mysql.c: - Added a mysql version number log message
* bot/src/mysql.c: - Added a mysql_option( MYSQL_OPT_RECONNECT ) to force
MySQL 5.x to reconnect if disconnected. - Fixes #25 (I hope)
2006-08-04 Gavin Hurlbut <[email protected]>
* bot/src/plugins/rssfeed.c: Make rssfeeds strip carriage returns. They
should go to spaces.
2006-08-03 Gavin Hurlbut <[email protected]>
* bot/src/plugins/rssfeed.c: Changed the format of the RSS output in an
attempt to minimize freenode's stupid spam detection's false positives
* bot/src/transmit.c: Once again, remove the added leading space on the
realname
* bot/src/botnet-1.6.4/makelib/output.c: Make it NOT put a leading space in
the IRC realname
2006-07-26 Gavin Hurlbut <[email protected]>
* bot/src/bot.c: Removed possibility of NULL-pointer segfault in ProcOnWho
2006-07-21 Gavin Hurlbut <[email protected]>
* bot/include/structs.h, bot/src/mysql.c, bot/src/transmit.c: - Implemented
the flood protection buffer count. Assume that the server will take stuff
out approximately at the rate we should be putting them in.
2006-07-20 Gavin Hurlbut <[email protected]>
* bot/include/db_schema.h, bot/include/structs.h: God I suck... forgot to
check in the header files AGAIN
* bot/src/mysql.c, bot/src/mysql_upgrade.c, bot/src/plugins/rssfeed.c,
bot/src/transmit.c: Added more flood protection tweaking, allows for hyperion
oddness
* bot/src/plugins/rssfeed.c: - make rssfeed log the message lengths too
* bot/include/protos.h: - oops, forgot to checkin the prototype
* bot/src/plugins/trout.c: - Added an adjective to the trout command - Closes
#22
* bot/src/bot_cmds.c, bot/src/plugins/core.c, bot/src/plugins/dns.c,
bot/src/plugins/rssfeed.c, bot/src/plugins/trout.c: - Put command line
parsing into a function rather than maintaining the same code all over
* bot/src/main.c: - testing new auth
2006-07-17 Gavin Hurlbut <[email protected]>
* Makefile.am, Makefile.in: Added the 'make release' support back
2006-07-14 Gavin Hurlbut <[email protected]>
* configure, configure.ac: Cleaned up the configure.ac
* bot/include/protos.h, bot/include/structs.h, bot/src/Makefile.in,
bot/src/mysql.c, bot/src/plugin_api.c, bot/src/plugins/plugin_list.h: -
Prepopulate the plugins table with any new plugins as defined in
plugin_list.h
* scripts/mkrelease, scripts/tagversion: Modified release and tag scripts
2006-07-13 Gavin Hurlbut <[email protected]>
* bot/src/main.c: - Make the child release the tty when running in daemon
mode - Closes #24
* : Protect the empty lib dir
* Makefile.in, bot/lib/datemsk.txt, bot/src/Makefile.in,
bot/src/plugins/Makefile.in, bot/src/plugins/datemsk.txt,
bot/src/plugins/rssfeed.c, configure, configure.ac, web/Makefile.in: Install
the datemsk.txt file to the plugins dir too
* bot/src/Makefile.in, bot/src/plugins/Makefile.in, configure, configure.ac,
configure.ac.in, web/Makefile, web/Makefile.in: - added make install for web
* bot/src/Makefile, bot/src/plugins/Makefile: - Removed the now generated
Makefiles
* INSTALL, Makefile, Makefile.am, Makefile.in, Makefile.local, README,
bot/Makefile, bot/include/config.h.in, bot/include/release.h.in,
bot/src/Makefile, bot/src/Makefile.in, bot/src/plugin_api.c,
bot/src/plugins/Makefile, bot/src/plugins/Makefile.in, configure,
configure.ac, configure.ac.in: - First run at an autoconf/automake system -
still need to add the libtool stuff (maybe) and also the make install in the
web dir
2006-07-12 Gavin Hurlbut <[email protected]>
* scripts/depcomp, scripts/missing: Added more autoconf scripts
* scripts/acconfig.h, scripts/config.guess, scripts/config.sub,
scripts/install-sh, scripts/tagversion: Added more autoconf scripts
2006-07-11 Gavin Hurlbut <[email protected]>
* bot/docs/README.userauth: Added basic documentation for the user
authentication stuff
* bot/docs/initialdata.sql: Updated the initial plugins data, to be used
AFTER running the bot once
2006-07-11 Chris Petersen <[email protected]>
* beirdobot.spec: another BR
2006-07-11 Gavin Hurlbut <[email protected]>
* bot/src/bot.c: Fix redefinition of __USE_BSD in some platforms
* bot/include/environment.h: Keep _LARGEFILE_SOURCE from being redefined on
platforms that define it automatically
* bot/Makefile, bot/src/Makefile, bot/src/opie-2.32/Makefile.gjh: - removed
no longer needed dummy files - make it compile libopie locally, removing the
need to use the package which is hard to find for some distros
* bot/src/opie-2.32/BUG-REPORT, bot/src/opie-2.32/COPYRIGHT.NRL,
bot/src/opie-2.32/INSTALL, bot/src/opie-2.32/License.TIN,
bot/src/opie-2.32/Makefile.in, bot/src/opie-2.32/README,
bot/src/opie-2.32/acconfig.h, bot/src/opie-2.32/config.h.in,
bot/src/opie-2.32/config.testeflag, bot/src/opie-2.32/configure,
bot/src/opie-2.32/configure.in, bot/src/opie-2.32/configure.munger.in,
bot/src/opie-2.32/debian/README.Debian, bot/src/opie-2.32/debian/changelog,
bot/src/opie-2.32/debian/control, bot/src/opie-2.32/debian/copyright,
bot/src/opie-2.32/debian/libopie-dev.dirs,
bot/src/opie-2.32/debian/opie-client.dirs,
bot/src/opie-2.32/debian/opie-client.docs,
bot/src/opie-2.32/debian/opie-server.README.Debian,
bot/src/opie-2.32/debian/opie-server.conffiles,
bot/src/opie-2.32/debian/opie-server.dirs,
bot/src/opie-2.32/debian/opie-server.docs, bot/src/opie-2.32/debian/rules,
bot/src/opie-2.32/ftpcmd.y, bot/src/opie-2.32/glob.c,
bot/src/opie-2.32/install-sh, bot/src/opie-2.32/libmissing/Makefile.in,
bot/src/opie-2.32/libmissing/alloca.c, bot/src/opie-2.32/libmissing/atexit.c,
bot/src/opie-2.32/libmissing/bogus.c,
bot/src/opie-2.32/libmissing/endspent.c,
bot/src/opie-2.32/libmissing/endutent.c, bot/src/opie-2.32/libmissing/env.c,
bot/src/opie-2.32/libmissing/getcwd.c,
bot/src/opie-2.32/libmissing/getspnam.c,
bot/src/opie-2.32/libmissing/getusershell.c,
bot/src/opie-2.32/libmissing/getutline.c,
bot/src/opie-2.32/libmissing/initgroups.c,
bot/src/opie-2.32/libmissing/memcmp.c, bot/src/opie-2.32/libmissing/memcpy.c,
bot/src/opie-2.32/libmissing/memset.c,
bot/src/opie-2.32/libmissing/pututline.c,
bot/src/opie-2.32/libmissing/setegid.c,
bot/src/opie-2.32/libmissing/seteuid.c,
bot/src/opie-2.32/libmissing/setutent.c,
bot/src/opie-2.32/libmissing/sigaddset.c,
bot/src/opie-2.32/libmissing/sigemptyset.c,
bot/src/opie-2.32/libmissing/sigprocmask.c,
bot/src/opie-2.32/libmissing/strchr.c,
bot/src/opie-2.32/libmissing/strerror.c,
bot/src/opie-2.32/libmissing/strncasecmp.c,
bot/src/opie-2.32/libmissing/strrchr.c,
bot/src/opie-2.32/libmissing/strtoul.c,
bot/src/opie-2.32/libmissing/sysconf.c, bot/src/opie-2.32/libmissing/uname.c,
bot/src/opie-2.32/libopie/Makefile.in,
bot/src/opie-2.32/libopie/accessfile.c, bot/src/opie-2.32/libopie/atob8.c,
bot/src/opie-2.32/libopie/btoa8.c, bot/src/opie-2.32/libopie/btoe.c,
bot/src/opie-2.32/libopie/btoh.c, bot/src/opie-2.32/libopie/challenge.c,
bot/src/opie-2.32/libopie/generator.c,
bot/src/opie-2.32/libopie/getsequence.c,
bot/src/opie-2.32/libopie/getutmpentry.c, bot/src/opie-2.32/libopie/hash.c,
bot/src/opie-2.32/libopie/hashlen.c, bot/src/opie-2.32/libopie/insecure.c,
bot/src/opie-2.32/libopie/keycrunch.c, bot/src/opie-2.32/libopie/lock.c,
bot/src/opie-2.32/libopie/login.c, bot/src/opie-2.32/libopie/logwtmp.c,
bot/src/opie-2.32/libopie/lookup.c, bot/src/opie-2.32/libopie/md4c.c,
bot/src/opie-2.32/libopie/md5c.c, bot/src/opie-2.32/libopie/newseed.c,
bot/src/opie-2.32/libopie/open.c, bot/src/opie-2.32/libopie/parsechallenge.c,
bot/src/opie-2.32/libopie/passcheck.c, bot/src/opie-2.32/libopie/passwd.c,
bot/src/opie-2.32/libopie/randomchallenge.c,
bot/src/opie-2.32/libopie/readpass.c, bot/src/opie-2.32/libopie/readrec.c,
bot/src/opie-2.32/libopie/unlock.c, bot/src/opie-2.32/libopie/verify.c,
bot/src/opie-2.32/libopie/version.c, bot/src/opie-2.32/libopie/writerec.c,
bot/src/opie-2.32/opie.4, bot/src/opie-2.32/opie.h,
bot/src/opie-2.32/opie_cfg.h, bot/src/opie-2.32/opieaccess.5,
bot/src/opie-2.32/opieftpd.8, bot/src/opie-2.32/opieftpd.c,
bot/src/opie-2.32/opiegen.1, bot/src/opie-2.32/opiegen.c,
bot/src/opie-2.32/opieinfo.1, bot/src/opie-2.32/opieinfo.c,
bot/src/opie-2.32/opiekey.1, bot/src/opie-2.32/opiekey.c,
bot/src/opie-2.32/opiekeys.5, bot/src/opie-2.32/opielogin.1,
bot/src/opie-2.32/opielogin.c, bot/src/opie-2.32/opiepasswd.1,
bot/src/opie-2.32/opiepasswd.c, bot/src/opie-2.32/opieserv.1,
bot/src/opie-2.32/opieserv.c, bot/src/opie-2.32/opiesu.1,
bot/src/opie-2.32/opiesu.c, bot/src/opie-2.32/opietest.c,
bot/src/opie-2.32/permsfile.c, bot/src/opie-2.32/popen.c: Added the
debian-patched opie-2.32 code into the source tree
2006-07-11 Chris Petersen <[email protected]>
* beirdobot.spec: add preliminary specfile to start tracking build
requirements
2006-07-11 Gavin Hurlbut <[email protected]>
* Makefile, bot/Makefile, web/Makefile: - Make a root level makefile and a
dummy makefile in web
* bot/Makefile: Make this work
* bot/scripts/.users, bot/scripts/mkrelease, bot/scripts/svn2log.py,
bot/scripts/tagversion, scripts/.users, scripts/mkrelease,
scripts/svn2log.py, scripts/tagversion: Moved scripts to the root
* bot/scripts/.users, bot/scripts/mkrelease: - Added xris to the .users -
minor cleanup to mkrelease
* bot/src/libmrss-0.12/doxy.conf, bot/src/libnxml-0.11/doxy.conf: - Not
needed, these files are autogenerated
2006-07-09 Gavin Hurlbut <[email protected]>
* bot/src/notice.c: Fixed the notices crashing the bot
* bot/src/transmit.c: Shortened to 8s window on transmit
* bot/src/transmit.c: Messed with the delay a bit to see if it will work
right
* bot/include/protos.h, bot/include/structs.h, bot/src/authenticate.c,
bot/src/bot.c, bot/src/bot_cmds.c, bot/src/notice.c, bot/src/plugin_api.c,
bot/src/plugins/core.c, bot/src/plugins/dns.c, bot/src/plugins/rssfeed.c,
bot/src/plugins/trout.c, bot/src/transmit.c: Switched everything to use the
new transmit threads to perform proper flood protection
2006-07-08 Gavin Hurlbut <[email protected]>
* bot/src/Makefile, bot/src/bot.c, bot/src/mysql.c, bot/src/transmit.c: -
created a new transmit thread so we can do our own proper flood protection
* bot/src/libmrss-0.12/mrss.pc, bot/src/libnxml-0.11/nxml.pc: Don't need
these, they are autogenerated
* bot/src/plugins/rssfeed.c: - Added a "rssfeed list timeout" that shows the
timeouts too, need to make channel specific