-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4592 lines (2988 loc) · 177 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
2010-01-11 08:47 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.c: Henri Bragge reported that rl_completion_matches()
on some ARM platform returns a non-null value even when no
completion matches are found. We now always set our own
completion function to avoid filename completion.
2009-08-11 13:52 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/interface.c: Fixing minor bugs in some experimental
commands.
2009-08-07 13:25 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* proc/Makefile.am, scli/Makefile.am, scli/basic.c, scli/bridge.c,
stub/Makefile.am: Fixed some compilation problems and some
autoconf issues.
2009-08-07 13:06 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* proc/Makefile.am, proc/q-bridge-mib-proc.c,
proc/q-bridge-mib-proc.h, proc/sflow5-mib-proc.c,
proc/sflow5-mib-proc.h: Adding proc files for the q-bridge-mib
and the sflow5-mib.
2009-07-29 22:36 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* README, autogen.sh, configure.in, proc/disman-script-mib-proc.c,
proc/disman-script-mib-proc.h, proc/if-mib-proc.c,
proc/if-mib-proc.h, proc/productmib-proc.c,
proc/productmib-proc.h, proc/rapid-city-proc.c,
proc/rapid-city-proc.h, proc/snmp-user-based-sm-mib-proc.c,
proc/snmp-user-based-sm-mib-proc.h,
proc/snmp-view-based-acm-mib-proc.c,
proc/snmp-view-based-acm-mib-proc.h, proc/udp-mib-proc.c,
proc/udp-mib-proc.h, scli/3com.c, scli/Makefile.am, scli/atm.c,
scli/basic.c, scli/bridge.c, scli/cisco.c, scli/cmds.c,
scli/disman.c, scli/entity.c, scli/ether.c, scli/hp.c,
scli/interface.c, scli/ip.c, scli/isdn.c, scli/monitor.c,
scli/netconf.c, scli/netsnmp.c, scli/nortel.c, scli/ospf.c,
scli/printer.c, scli/rs232.c, scli/scli.h, scli/sflow.c,
scli/snmp.c, scli/sonet.c, scli/system.c, scli/tcp.c,
scli/thread.c, scli/udp.c, scli/xml.c, stub/Makefile.am,
stub/atm-mib.c, stub/atm-mib.h, stub/bridge-mib.c,
stub/bridge-mib.h, stub/cisco-dot11-association-mib.c,
stub/cisco-dot11-association-mib.h, stub/cisco-process-mib.c,
stub/cisco-process-mib.h, stub/disman-schedule-mib.c,
stub/disman-schedule-mib.h, stub/disman-script-mib.c,
stub/disman-script-mib.h, stub/entity-mib.c, stub/entity-mib.h,
stub/entity-sensor-mib.c, stub/entity-sensor-mib.h,
stub/etherlike-mib.c, stub/etherlike-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
stub/host-resources-types.c, stub/host-resources-types.h,
stub/hp-icf-fault-finder-mib.c, stub/hp-icf-fault-finder-mib.h,
stub/iana-charset-mib.c, stub/iana-charset-mib.h,
stub/iana-language-mib.c, stub/iana-language-mib.h,
stub/iana-mau-mib.c, stub/iana-mau-mib.h,
stub/iana-printer-mib.c, stub/iana-printer-mib.h,
stub/ianaiftype-mib.c, stub/ianaiftype-mib.h, stub/if-mib.c,
stub/if-mib.h, stub/inet-address-mib.c, stub/inet-address-mib.h,
stub/ip-forward-mib.c, stub/ip-forward-mib.h, stub/ip-mib.c,
stub/ip-mib.h, stub/isdn-mib.c, stub/isdn-mib.h, stub/mau-mib.c,
stub/mau-mib.h, stub/notification-log-mib.c,
stub/notification-log-mib.h, stub/old-cisco-ip-mib.c,
stub/old-cisco-ip-mib.h, stub/ospf-mib.c, stub/ospf-mib.h,
stub/printer-mib.c, stub/printer-mib.h, stub/productmib.c,
stub/productmib.h, stub/q-bridge-mib.c, stub/q-bridge-mib.h,
stub/rapid-city.c, stub/rapid-city.h, stub/rfc1213-mib.c,
stub/rfc1213-mib.h, stub/rmon-mib.c, stub/rmon-mib.h,
stub/rs-232-mib.c, stub/rs-232-mib.h, stub/sflow5-mib.c,
stub/sflow5-mib.h, stub/snmp-community-mib.c,
stub/snmp-community-mib.h, stub/snmp-framework-mib.c,
stub/snmp-framework-mib.h, stub/snmp-mpd-mib.c,
stub/snmp-mpd-mib.h, stub/snmp-notification-mib.c,
stub/snmp-notification-mib.h, stub/snmp-target-mib.c,
stub/snmp-target-mib.h, stub/snmp-user-based-sm-mib.c,
stub/snmp-user-based-sm-mib.h, stub/snmp-view-based-acm-mib.c,
stub/snmp-view-based-acm-mib.h, stub/snmpv2-mib.c,
stub/snmpv2-mib.h, stub/snmpv2-tc.c, stub/snmpv2-tc.h,
stub/snmpv2-tm.c, stub/snmpv2-tm.h, stub/sonet-mib.c,
stub/sonet-mib.h, stub/tcp-mib.c, stub/tcp-mib.h,
stub/tunnel-mib.c, stub/tunnel-mib.h, stub/ucd-snmp-mib.c,
stub/ucd-snmp-mib.h, stub/udp-mib.c, stub/udp-mib.h: Major patch
to adapt to the gsnmp API changes. Gsnmp API functions now use
GError for runtime error reporting. Additional changes have been
made to support local (Unix domain) sockets.
2009-02-18 22:57 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/bridge.c: Show the tagged vlans (suggested by Tim Durack
<tdurack@gmail.com>) and some commands to create/delete VLANs.
2008-06-20 20:09 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/vendors.c: Added ZyXEL (found at the airport in Torp near
Oslo).
2008-03-10 13:46 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c: In protocol mode, never consider to use a pager,
even if we are interactive.
2007-12-14 08:07 strauss
* scli/cmds.c, scli/snmp.c: Print the context string and the
context engineids for each logical context.
2007-07-12 09:54 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/monitor.c: Minor C cleanup.
2007-07-12 07:28 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am, stub/atm-mib.c, stub/atm-mib.h,
stub/bridge-mib.c, stub/bridge-mib.h,
stub/cisco-dot11-association-mib.c,
stub/cisco-dot11-association-mib.h, stub/cisco-process-mib.c,
stub/cisco-process-mib.h, stub/disman-schedule-mib.c,
stub/disman-schedule-mib.h, stub/disman-script-mib.c,
stub/disman-script-mib.h, stub/entity-mib.c, stub/entity-mib.h,
stub/entity-sensor-mib.c, stub/entity-sensor-mib.h,
stub/etherlike-mib.c, stub/etherlike-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
stub/host-resources-types.c, stub/host-resources-types.h,
stub/hp-icf-fault-finder-mib.c, stub/hp-icf-fault-finder-mib.h,
stub/iana-charset-mib.c, stub/iana-charset-mib.h,
stub/iana-language-mib.c, stub/iana-language-mib.h,
stub/iana-printer-mib.c, stub/iana-printer-mib.h, stub/if-mib.c,
stub/if-mib.h, stub/inet-address-mib.c, stub/inet-address-mib.h,
stub/ip-forward-mib.c, stub/ip-forward-mib.h, stub/ip-mib.c,
stub/ip-mib.h, stub/isdn-mib.c, stub/isdn-mib.h, stub/mau-mib.c,
stub/mau-mib.h, stub/notification-log-mib.c,
stub/notification-log-mib.h, stub/old-cisco-ip-mib.c,
stub/old-cisco-ip-mib.h, stub/ospf-mib.c, stub/ospf-mib.h,
stub/printer-mib.c, stub/printer-mib.h, stub/productmib.c,
stub/productmib.h, stub/q-bridge-mib.c, stub/rapid-city.c,
stub/rapid-city.h, stub/rfc1213-mib.c, stub/rfc1213-mib.h,
stub/rmon-mib.c, stub/rmon-mib.h, stub/rs-232-mib.c,
stub/rs-232-mib.h, stub/sflow5-mib.c, stub/snmp-community-mib.c,
stub/snmp-community-mib.h, stub/snmp-framework-mib.c,
stub/snmp-framework-mib.h, stub/snmp-mpd-mib.c,
stub/snmp-mpd-mib.h, stub/snmp-notification-mib.c,
stub/snmp-notification-mib.h, stub/snmp-target-mib.c,
stub/snmp-target-mib.h, stub/snmp-user-based-sm-mib.c,
stub/snmp-user-based-sm-mib.h, stub/snmp-view-based-acm-mib.c,
stub/snmp-view-based-acm-mib.h, stub/snmpv2-mib.c,
stub/snmpv2-mib.h, stub/snmpv2-tc.c, stub/snmpv2-tc.h,
stub/snmpv2-tm.c, stub/snmpv2-tm.h, stub/sonet-mib.c,
stub/sonet-mib.h, stub/tcp-mib.c, stub/tcp-mib.h,
stub/tunnel-mib.c, stub/ucd-snmp-mib.c, stub/ucd-snmp-mib.h,
stub/udp-mib.c, stub/udp-mib.h: Regenerated the stubs to avoid
static buffers.
2007-04-10 11:42 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* images, images/scli-containment.png, images/scli-interface.png,
images/scli-misc.png, images/scli-process.png,
images/scli-storage.png: Created a directory for storing screen
shots.
2007-04-10 10:51 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am, scli/basic.c, scli/cmds.c, scli/scli.c,
scli/scli.h, scli/thread.c: Initial multi-threading support. We
use a global lock to serialize command evaluations in concurrent
interpreters. This is a quick hack and can be improved by making
more code thread-safe. It is yet unclear what the exit command
should do; this needs further work.
2007-03-30 16:08 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* doc/scli-protocol.txt: Initial version of the scli protocol
definition, mostly written by Vladislav Marinov.
2007-03-29 19:25 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.c: Fixed the initial greeting message to be consistent
with the protocol mode.
2007-03-29 19:24 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c, scli/cmds.c: Fixed the handling of errors in slave
interpreters in protocol mode as reported by Vladislav Marinov.
2007-02-18 12:08 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.h: Export the sflow initialization function.
2007-02-18 12:07 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/bridge.c: prettier labels..
2007-01-23 21:49 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am, scli/basic.c, scli/sflow.c: Added the sflow.c
module. Much more work needed.
2007-01-23 21:49 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/fmt.c, scli/scli.h: Added a function to render
InetAddressType, InetAddress pairs.
2007-01-23 21:47 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am, stub/sflow5-mib.c, stub/sflow5-mib.h: Added
stubs for sFlow(R) version 5.
2007-01-19 00:24 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/vendors.c: Added enterprise ID Devicescape (seems to be used
by Netgear boxes).
2007-01-02 23:46 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c, scli/cmds.c, scli/scli.c: Moved from
PACKAGE_VERSION back to VERSION to keep peace with automake and
autoconf.
2007-01-02 23:23 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* Makefile.am, configure.in: Fixed the configure setup so that make
dist actually works. Created a definition to include the scli.pdf
instead of the scli.ps in the distribution.
2007-01-02 23:22 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* doc/scli.texinfo: Regenerated the texinfo documentation from the
manual page.
2007-01-02 23:14 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am: Include oui.c in the distribution; fixed the
script to deal with quotes correctly which happen to appear in
the latest oui.txt source.
2007-01-02 23:13 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/oui.c: Update the oui.c file (after fixing the sed magic to
deal with quotes).
2007-01-02 22:50 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* doc/scli.texinfo: Updated email address (let the spam come down
on me).
2007-01-02 22:37 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* AUTHORS.xml, ChangeLog, NEWS, README, config.h.in: Updated the
documentation in preparation of the next release.
2007-01-02 22:27 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/bridge.c: Added commands 'show bridge vlan info' and 'show
bridge vlan details'.
2007-01-02 22:27 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.1.in: Dropped options that are now provided by gsnmp;
updated administrivia.
2007-01-02 22:17 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.1.in: Updated the URL for the project and copyright
years.
2007-01-02 22:16 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/monitor.c: Some better support for non-interactive loops;
still needs some more thought.
2007-01-02 17:37 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* Makefile.am: Added target to generate the changelog from the SVN
log messages.
2007-01-02 17:15 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.h: Exported scli_show_results().
2007-01-02 17:14 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c: Minor code cleanup; bumped the year in the
copyright statement.
2007-01-01 23:17 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am, scli/basic.c, scli/getopt.c, scli/getopt.h,
scli/getopt1.c, scli/scli.c: Replaced GNU getopt with the glib
command line option parser.
2006-10-23 16:50 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am, stub/hp-icf-fault-finder-mib.c,
stub/hp-icf-fault-finder-mib.h, stub/q-bridge-mib.c,
stub/q-bridge-mib.h: Added some HP stuff and the bridging
extension for VLANs.
2006-10-06 10:33 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/cmds.c: Dropped the 'show scli interps' command; the list of
interpreters is now shown as part of the 'show scli info'
command.
2006-10-06 10:23 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c, scli/cmds.c, scli/scli.h: A slave interpreter now
keeps a pointer to its master; changed the protocol mode output
such that slave output is prefixed by the name of the slave
interpreter.
2006-10-05 21:03 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/cmds.c, scli/scli.c: Inherit the protocol mode flag to slave
interpreters; use PACKAGE_VERSION in more places.
2006-10-05 20:30 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c, scli/cmds.c, scli/scli.c: Prepend all output line
with an error code and a continuation indicator if the
interpreter has the protocol mode flag set. Enhanced the 'create
scli interp' command to produce a more usable command handle.
Started to use PACKAGE_VERSION instead of VERSION to obtain the
version number.
2006-08-22 22:13 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am, scli/basic.c, scli/cmds.c, scli/disman.c,
scli/hp.c, scli/interface.c, scli/ip.c, scli/scli.h,
stub/ianaiftype-mib.c, stub/ianaiftype-mib.h, stub/tunnel-mib.c,
stub/tunnel-mib.h: Added hp mode, updated TUNNEL-MIB related
definitions.
2006-08-22 21:58 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* proc/disman-script-mib-proc.c, proc/productmib-proc.c,
proc/snmp-user-based-sm-mib-proc.c,
proc/snmp-view-based-acm-mib-proc.c: Renamed error code constants
to match latest gsnmp versions.
2006-08-22 21:57 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am, stub/cisco-dot11-association-mib.c,
stub/cisco-process-mib.c, stub/old-cisco-ip-mib.c,
stub/productmib.c, stub/rapid-city.c: Added hp mode, renamed
error code constants to match latest gsnmp versions.
2006-02-21 20:47 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/atm-mib.c, stub/bridge-mib.c, stub/disman-schedule-mib.c,
stub/disman-script-mib.c, stub/entity-mib.c,
stub/entity-sensor-mib.c, stub/etherlike-mib.c,
stub/host-resources-mib.c, stub/host-resources-types.c,
stub/iana-charset-mib.c, stub/iana-language-mib.c,
stub/iana-printer-mib.c, stub/ianaiftype-mib.c, stub/if-mib.c,
stub/ip-forward-mib.c, stub/ip-mib.c, stub/isdn-mib.c,
stub/mau-mib.c, stub/notification-log-mib.c, stub/ospf-mib.c,
stub/printer-mib.c, stub/q-bridge-mib.c, stub/rfc1213-mib.c,
stub/rmon-mib.c, stub/rs-232-mib.c, stub/snmp-community-mib.c,
stub/snmp-framework-mib.c, stub/snmp-mpd-mib.c,
stub/snmp-notification-mib.c, stub/snmp-target-mib.c,
stub/snmp-user-based-sm-mib.c, stub/snmp-view-based-acm-mib.c,
stub/snmpv2-mib.c, stub/snmpv2-tc.c, stub/snmpv2-tm.c,
stub/sonet-mib.c, stub/tcp-mib.c, stub/tunnel-mib.c,
stub/ucd-snmp-mib.c, stub/udp-mib.c: Regenerated MIB modules to
track changes in the gsnmp API.
2006-02-21 20:45 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/atm-mib.h, stub/bridge-mib.h, stub/disman-schedule-mib.h,
stub/disman-script-mib.h, stub/entity-mib.h,
stub/entity-sensor-mib.h, stub/etherlike-mib.h,
stub/host-resources-mib.h, stub/host-resources-types.h,
stub/iana-charset-mib.h, stub/iana-language-mib.h,
stub/iana-printer-mib.h, stub/ianaiftype-mib.h,
stub/ip-forward-mib.h, stub/ip-mib.h, stub/isdn-mib.h,
stub/mau-mib.h, stub/notification-log-mib.h, stub/printer-mib.h,
stub/rfc1213-mib.h, stub/rmon-mib.h, stub/rs-232-mib.h,
stub/snmp-community-mib.h, stub/snmp-framework-mib.h,
stub/snmp-mpd-mib.h, stub/snmp-notification-mib.h,
stub/snmp-target-mib.h, stub/snmp-user-based-sm-mib.h,
stub/snmp-view-based-acm-mib.h, stub/snmpv2-tc.h,
stub/snmpv2-tm.h, stub/sonet-mib.h, stub/tcp-mib.h,
stub/tunnel-mib.h, stub/ucd-snmp-mib.h, stub/udp-mib.h:
Regenerated MIB modules to track changes in the gsnmp API.
2006-02-21 16:34 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am: Added MAINTAINERCLEANFILES and cleaned up some
duplicate definitions.
2006-02-09 00:49 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* snmp: The SNMP layer has been moved into the gsnmp package.
2006-02-09 00:47 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* config.h.in: Updated config.h.in for completeness.
2006-02-09 00:46 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c, scli/cmds.c, scli/scli.h: Some experimental patches
to pretty-print XML output.
2006-02-09 00:43 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* configure.in: Included a patch from Jasper Wallace
<jasper@pointless.net> to deal with include dependencies on some
systems.
2006-02-09 00:42 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am: Do not hard code -lgmodule; use $(GLIB_LIBS)
instead which should provide the right thing.
2006-01-18 09:40 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/cisco-dot11-association-mib.c,
stub/cisco-dot11-association-mib.h, stub/inet-address-mib.c,
stub/inet-address-mib.h, stub/q-bridge-mib.c,
stub/q-bridge-mib.h: Turn $Id$ explansion on (can this be done
automatically for all additions?).
2006-01-18 09:36 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ospf.c: Totally unfinished code to show the link state
database.
2006-01-18 09:34 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am: Stubs for the INET-ADDRESS-MIB and the
Q-BRIDGE-MIB.
2006-01-18 09:32 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/ospf-mib.c, stub/ospf-mib.h: Generate some more stub
functions for the OSPF-MIB.
2006-01-18 09:31 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/q-bridge-mib.c, stub/q-bridge-mib.h: Added stubs for the
Q-BRIDGE-MIB.
2006-01-18 09:28 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/bridge.c: Render vlan summary information in xml.
2006-01-18 09:25 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/entity.c: Fixed constant (see what happens if you don't use
symbolic constants).
2005-06-28 09:45 strauss
* doc/scli.texinfo.in, scli/cisco.c, scli/oui.c, stub/Makefile.am,
stub/cisco-dot11-association-mib.c,
stub/cisco-dot11-association-mib.h, stub/inet-address-mib.c,
stub/inet-address-mib.h: Added oui.c to the repository. Fixed
some minor info on stub creation in scli.texinfo.in. Added MIBs:
INET-ADDRESS-MIB, CISCO-DOT11-ASSOCIATION-MIB. Added three
commands for 802.11 CISCO devices to the "cisco" mode.
2005-06-13 00:26 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* ChangeLog: regenerated changelog (using svn2cl)
2005-04-13 22:20 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/vendors.c: Added Kyocera.
2005-01-26 22:38 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/interface.c: Treat ifMtu = 0x7fffffff as a null value, even
though the RFC 2863 does not assign this special value and
suggests in section 3.1.18 that the ifMtu should not exist until
it is known.
2005-01-26 22:28 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ip.c, scli/system.c, scli/vendors.c: Fix minor bugs
uncovered by talking to Juniper boxes.
2004-11-08 21:04 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/snmp.c: Show global notification log parameters as part of
the "show snmp engine" command.
2004-11-08 20:04 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/bridge.c: Remove some unused variables and such things.
2004-11-08 20:04 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/monitor.c: Be nice and avoid to retrieve unneeded
information.
2004-11-08 20:03 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/system.c: Changed the field containing the URI again...
2004-11-05 09:24 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/snmp.c: Added commands new "show snmp notification log info"
and "show snmp notification log details".
2004-11-05 09:23 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/fmt.c: Break lines earlier, fixes a bug in the
tdomain/taddress formatter.
2004-11-05 09:22 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ip.c, scli/printer.c, scli/system.c, scli/tcp.c: Keywords
which include white space are now deprecated.
2004-11-05 09:21 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am, stub/if-mib.c, stub/if-mib.h,
stub/snmpv2-mib.c, stub/snmpv2-mib.h: Regenerated some files to
include notification information (but more work is needed like
real stubs).
2004-10-25 12:05 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/bridge.c: Print dot1dTpPortMaxInfo as part of the "show
bridge stats" output.
2004-10-22 22:03 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am, scli/basic.c, scli/bridge.c, scli/entity.c,
scli/fmt.c, scli/interface.c, scli/ip.c, scli/printer.c,
scli/scli.h, scli/system.c: More XML output contributed by Frank
Strauss.
2004-10-15 15:26 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* Makefile.am, configure.in: Removed the bogus reference to the lib
subdirectory.
2004-10-14 21:57 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* ChangeLog, Makefile.am, NEWS, PORTING, README, TODO, autogen.sh,
config.h.in, configure.in: Preparing for the next release.
2004-10-14 21:43 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* doc/scli.texinfo, doc/scli.texinfo.in, doc/texinfo.tex: Preparing
for the next release.
2004-10-14 21:36 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am, scli/netconf.c: Added a basically empty netconf
protocol interface and makefile magic to generate oui.c from a
page of the IEEE web site.
2004-10-14 21:34 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/cmds.c: Tracking changes in the lower layer APIs. Added new
commands such as "set scli retries", "set scli timeout", "run
scli scan", "run scli walk"
2004-10-14 21:30 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.1.in: Minor corrections.
2004-10-14 21:30 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/system.c: Tracking changes in the lower layer APIs. New
commands: "show system software", "check system contact", "check
system storage", "check system process"
2004-10-14 21:28 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c, scli/fmt.c, scli/monitor.c: Tracking changes in the
lower layer APIs.
2004-10-14 21:27 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/snmp.c: Tracking changes in the lower layer APIs. Added some
initial versions of "show snmp contexts" and "show snmp csm".
2004-10-14 21:24 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.c: Tracking changes in the lower layer APIs. Fixed the
timeout/retry options.
2004-10-14 21:21 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Tracking changes in the lower layer APIs and MIB
modules.
2004-10-14 21:18 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/entity.c: First fragments for a "show entity sensors"
command - unfortunately I do not have a box which already
supports the standards-track sensor MIB.
2004-10-14 21:16 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/3com.c, scli/bridge.c, scli/interface.c, scli/ip.c,
scli/netsnmp.c, scli/scli.h, scli/sonet.c: Tracking changes in
the lower layer APIs.
2004-10-14 21:07 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ether.c: First fragments of a "show ethernet history"
command.
2004-10-14 21:06 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/disman.c: Added half finished "create schedule", "delete
schedule", "dump schedule", "monitor schedule info".
2004-10-14 21:00 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/cisco.c: Added "show cisco processes" and improved the cisco
accounting commands.
2004-10-14 20:58 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/nortel.c: Tracking changes in the lower layer APIs.
2004-10-14 20:51 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/udp.c: Incomplete code for the "show udp stats" command.
2004-10-14 20:50 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/vendors.c: Added Karlnet and Netgear. The OUI list is not
used anymore. Frank contributed a script to generate a list from
the official IEEE web pages.
2004-10-14 20:46 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/xml.c: Do not use xmlNodeSetContent().
2004-10-14 20:11 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* proc/disman-script-mib-proc.c, proc/disman-script-mib-proc.h,
proc/if-mib-proc.c, proc/if-mib-proc.h, proc/productmib-proc.c,
proc/productmib-proc.h, proc/rapid-city-proc.c,
proc/rapid-city-proc.h, proc/snmp-user-based-sm-mib-proc.c,
proc/snmp-user-based-sm-mib-proc.h,
proc/snmp-view-based-acm-mib-proc.c,
proc/snmp-view-based-acm-mib-proc.h, proc/udp-mib-proc.c,
proc/udp-mib-proc.h: Adapt to changes in the gsnmp API.
2004-10-14 19:56 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/atm-mib.c, stub/atm-mib.h, stub/bridge-mib.c,
stub/bridge-mib.h, stub/cisco-process-mib.c,
stub/cisco-process-mib.h, stub/disman-schedule-mib.c,
stub/disman-schedule-mib.h, stub/disman-script-mib.c,
stub/disman-script-mib.h, stub/entity-mib.c, stub/entity-mib.h,
stub/entity-sensor-mib.c, stub/entity-sensor-mib.h,
stub/etherlike-mib.c, stub/etherlike-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
stub/host-resources-types.c, stub/host-resources-types.h,
stub/iana-charset-mib.c, stub/iana-charset-mib.h,
stub/iana-language-mib.c, stub/iana-language-mib.h,
stub/iana-printer-mib.c, stub/iana-printer-mib.h,
stub/ianaiftype-mib.c, stub/ianaiftype-mib.h, stub/if-mib.c,
stub/if-mib.h, stub/ip-forward-mib.c, stub/ip-forward-mib.h,
stub/ip-mib.c, stub/ip-mib.h, stub/isdn-mib.c, stub/isdn-mib.h,
stub/mau-mib.c, stub/mau-mib.h, stub/notification-log-mib.c,
stub/notification-log-mib.h, stub/old-cisco-ip-mib.c,
stub/old-cisco-ip-mib.h, stub/ospf-mib.c, stub/ospf-mib.h,
stub/printer-mib.c, stub/printer-mib.h, stub/productmib.c,
stub/productmib.h, stub/rapid-city.c, stub/rapid-city.h,
stub/rfc1213-mib.c, stub/rfc1213-mib.h, stub/rmon-mib.c,
stub/rmon-mib.h, stub/rs-232-mib.c, stub/rs-232-mib.h,
stub/snmp-community-mib.c, stub/snmp-community-mib.h,
stub/snmp-framework-mib.c, stub/snmp-framework-mib.h,
stub/snmp-mpd-mib.c, stub/snmp-mpd-mib.h,
stub/snmp-notification-mib.c, stub/snmp-notification-mib.h,
stub/snmp-target-mib.c, stub/snmp-target-mib.h,
stub/snmp-user-based-sm-mib.c, stub/snmp-user-based-sm-mib.h,
stub/snmp-view-based-acm-mib.c, stub/snmp-view-based-acm-mib.h,
stub/snmpv2-mib.c, stub/snmpv2-mib.h, stub/snmpv2-tc.c,
stub/snmpv2-tc.h, stub/snmpv2-tm.c, stub/snmpv2-tm.h,
stub/sonet-mib.c, stub/sonet-mib.h, stub/tcp-mib.c,
stub/tcp-mib.h, stub/tunnel-mib.c, stub/tunnel-mib.h,
stub/ucd-snmp-mib.c, stub/ucd-snmp-mib.h, stub/udp-mib.c,
stub/udp-mib.h: Added entity-sensor-mib.c, entity-sensor-mib.h,
rmon-mib.c, rmon-mib.h. Regenerated all stubs to follow changes
in the gsnmp API.
2004-07-11 22:59 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am, stub/atm-mib.c, stub/atm-mib.h,
stub/bridge-mib.c, stub/bridge-mib.h, stub/cisco-process-mib.c,
stub/cisco-process-mib.h, stub/disman-schedule-mib.c,
stub/disman-schedule-mib.h, stub/disman-script-mib.c,
stub/disman-script-mib.h, stub/entity-mib.c, stub/entity-mib.h,
stub/etherlike-mib.c, stub/etherlike-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
stub/host-resources-types.c, stub/host-resources-types.h,
stub/iana-charset-mib.c, stub/iana-charset-mib.h,
stub/iana-language-mib.c, stub/iana-language-mib.h,
stub/iana-printer-mib.c, stub/iana-printer-mib.h,
stub/ianaiftype-mib.c, stub/ianaiftype-mib.h, stub/if-mib.c,
stub/if-mib.h, stub/ip-forward-mib.c, stub/ip-forward-mib.h,
stub/ip-mib.c, stub/ip-mib.h, stub/isdn-mib.c, stub/isdn-mib.h,
stub/mau-mib.c, stub/mau-mib.h, stub/notification-log-mib.c,
stub/notification-log-mib.h, stub/old-cisco-ip-mib.c,
stub/old-cisco-ip-mib.h, stub/ospf-mib.c, stub/ospf-mib.h,
stub/printer-mib.c, stub/printer-mib.h, stub/productmib.c,
stub/productmib.h, stub/rapid-city.c, stub/rapid-city.h,
stub/rfc1213-mib.c, stub/rfc1213-mib.h, stub/rs-232-mib.c,
stub/rs-232-mib.h, stub/snmp-community-mib.c,
stub/snmp-community-mib.h, stub/snmp-framework-mib.c,
stub/snmp-framework-mib.h, stub/snmp-mpd-mib.c,
stub/snmp-mpd-mib.h, stub/snmp-notification-mib.c,
stub/snmp-notification-mib.h, stub/snmp-target-mib.c,
stub/snmp-target-mib.h, stub/snmp-user-based-sm-mib.c,
stub/snmp-user-based-sm-mib.h, stub/snmp-view-based-acm-mib.c,
stub/snmp-view-based-acm-mib.h, stub/snmpv2-mib.c,
stub/snmpv2-mib.h, stub/snmpv2-tc.c, stub/snmpv2-tc.h,
stub/snmpv2-tm.c, stub/snmpv2-tm.h, stub/sonet-mib.c,
stub/sonet-mib.h, stub/tcp-mib.c, stub/tcp-mib.h,
stub/tunnel-mib.c, stub/tunnel-mib.h, stub/ucd-snmp-mib.c,
stub/ucd-snmp-mib.h, stub/udp-mib.c, stub/udp-mib.h: Regenerated
all stubs to follow changes in the gsnmp API.
2004-06-24 23:12 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/vendors.c: Added Microsoft and SerComm.
2004-04-21 15:29 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/sonet.c: Minor cleanups to adapt to changes in the stub
compiler.
2004-04-21 15:15 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ospf.c: Minor cleanups to adapt to changes in the stub
compiler.
2004-04-21 15:12 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/rs232.c: Finalized the "show rs232 details" command.
2004-04-21 14:45 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/3com.c, scli/ether.c: Minor cleanups to adapt to changes in
the stub compiler.
2004-04-21 14:44 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/entity.c: Minor cleanups to adapt to changes in the stub
compiler plus some minor layout improvements.
2004-04-21 14:32 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/vendors.c: Added IBM, D-Link Systems, Lexmark, Canon, and
Riverstone Networks.
2004-04-19 15:33 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* proc/Makefile.am, proc/disman-script-mib-proc.c,
proc/disman-script-mib-proc.h, proc/ianaiftype-mib-proc.c,
proc/ianaiftype-mib-proc.h, proc/if-mib-proc.c,
proc/if-mib-proc.h, proc/productmib-proc.c,
proc/productmib-proc.h, proc/rapid-city-proc.c,
proc/rapid-city-proc.h, proc/snmp-user-based-sm-mib-proc.c,
proc/snmp-user-based-sm-mib-proc.h,
proc/snmp-view-based-acm-mib-proc.c,
proc/snmp-view-based-acm-mib-proc.h, proc/udp-mib-proc.h: Added
ianaiftype-mib-proc.c ianaiftype-mib-proc.h. Several minor
changes to adapt to changes of the gsnmp API.
2004-04-19 15:28 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/Makefile.am, stub/atm-mib.c, stub/atm-mib.h,
stub/bridge-mib.c, stub/bridge-mib.h, stub/cisco-process-mib.c,
stub/cisco-process-mib.h, stub/disman-schedule-mib.c,
stub/disman-schedule-mib.h, stub/disman-script-mib.c,
stub/disman-script-mib.h, stub/entity-mib.c, stub/entity-mib.h,
stub/etherlike-mib.c, stub/etherlike-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
stub/host-resources-types.c, stub/host-resources-types.h,
stub/iana-charset-mib.c, stub/iana-charset-mib.h,
stub/iana-language-mib.c, stub/iana-language-mib.h,
stub/iana-printer-mib.c, stub/iana-printer-mib.h,
stub/ianaiftype-mib.c, stub/ianaiftype-mib.h, stub/if-mib.c,
stub/if-mib.h, stub/ip-forward-mib.c, stub/ip-forward-mib.h,
stub/ip-mib.c, stub/ip-mib.h, stub/isdn-mib.c, stub/isdn-mib.h,
stub/mau-mib.c, stub/mau-mib.h, stub/notification-log-mib.c,
stub/notification-log-mib.h, stub/old-cisco-ip-mib.c,
stub/old-cisco-ip-mib.h, stub/ospf-mib.c, stub/ospf-mib.h,
stub/printer-mib.c, stub/printer-mib.h, stub/productmib.c,
stub/productmib.h, stub/rapid-city.c, stub/rapid-city.h,
stub/rfc1213-mib.c, stub/rfc1213-mib.h, stub/rs-232-mib.c,
stub/rs-232-mib.h, stub/snmp-community-mib.c,
stub/snmp-community-mib.h, stub/snmp-framework-mib.c,
stub/snmp-framework-mib.h, stub/snmp-mpd-mib.c,
stub/snmp-mpd-mib.h, stub/snmp-notification-mib.c,
stub/snmp-notification-mib.h, stub/snmp-target-mib.c,
stub/snmp-target-mib.h, stub/snmp-user-based-sm-mib.c,
stub/snmp-user-based-sm-mib.h, stub/snmp-view-based-acm-mib.c,
stub/snmp-view-based-acm-mib.h, stub/snmpv2-mib.c,
stub/snmpv2-mib.h, stub/snmpv2-tc.c, stub/snmpv2-tc.h,
stub/snmpv2-tm.c, stub/snmpv2-tm.h, stub/sonet-mib.c,
stub/sonet-mib.h, stub/tcp-mib.c, stub/tcp-mib.h,
stub/tunnel-mib.c, stub/tunnel-mib.h, stub/ucd-snmp-mib.c,
stub/ucd-snmp-mib.h, stub/udp-mib.c, stub/udp-mib.h: Added
cisco-process-mib.c cisco-process-mib.h iana-charset-mib.c
iana-charset-mib.h iana-printer-mib.c iana-printer-mib.h
ianaiftype-mib.c ianaiftype-mib.h snmpv2-tc.c snmpv2-tc.h.
Regenerated all stubs to follow changes in the gsnmp API.
2003-11-06 17:16 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* AUTHORS: Added Stefan Petri.
2003-05-20 14:35 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stamp-h.in: Removed this file since it does not belong into CVS.
Thansk to Wolfgang Fritz <wolfgang.fritz@keymile.com> for
reporting this.
2003-05-09 07:49 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* snmp/g_dispatch.c: Changed some printf()s to g_warning()s.
2003-05-09 07:48 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* doc/scli.texinfo: Added a directory entry definition.
2002-10-18 14:26 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/vendors.c: Added an entry for Nortel Networks (which was
formerly Rapid City Communication).
2002-10-18 13:51 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ip.c: Minor improvements to "show ip addresses".
2002-10-02 13:52 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/fmt.c: Better rounding in fmt_timeticks. Some code
cosmetics.
2002-09-20 20:52 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Bug fixes submitted by Michael Goffioul
<goffioul@imec.be>.
2002-09-20 10:49 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Documented why some code is still uncommented.
2002-09-20 09:50 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Many additions and updates inspired by Michael
Goffioul <goffioul@imec.be>.
2002-09-20 09:49 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* stub/printer-mib.c, stub/printer-mib.h: Regenerated stubs from
the latest Printer-MIB drafts.
2002-09-17 15:55 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Fixed a spelling error.
2002-09-16 21:20 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Added some north-american paper sizes.
2002-09-16 21:12 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Several fixes suggested by Michael Goffioul
<goffioul@imec.be>.
2002-09-14 12:56 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Fixed a few quirks in the new code.
2002-09-14 12:13 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Added the "show printer paths" command. Generate
more human friendly paper size names if possible.
2002-09-13 17:56 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/basic.c, scli/disman.c, scli/entity.c, scli/ether.c,
scli/fmt.c, scli/printer.c, scli/scli.h, scli/snmp.c,
scli/system.c: Introduced fmt_identity() and changed modes to use
it. Some incomplete XML support for show printer info.
2002-09-10 19:13 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/vendors.c: dded 1stWave.
2002-09-10 10:25 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Renamed an element from version to information.
2002-09-10 10:19 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Added the show printer colorants command. Added
XML support for the show printer interpreter and the show printer
channels commands. Renamed show printer console display to show
printer display and show printer console lights to show printer
lights.
2002-09-10 10:18 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/scli.c: Explain the -i option in the help message.
2002-09-10 10:15 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ospf.c: Replaced the calls to xxx_enum().
2002-09-09 12:51 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Added XML support for the show printer supplies
command.
2002-09-09 12:27 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Added XML support for the show printer outputs
command.
2002-09-09 11:08 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/isdn.c: Fixed a pointer deref error.
2002-09-09 11:06 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Fixed the XML containment. Added XML support for
the show printer covers command.
2002-09-09 09:49 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Make all information about a single printer
contained in a printer element for this printer.
2002-09-06 13:25 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/printer.c: Added xml support for "show printer inputs".
2002-09-04 11:28 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* snmp/g_session.c, snmp/g_session.h, snmp/g_snmp.c, snmp/g_snmp.h,
snmp/g_snmp_table.c, snmp/g_snmp_table.h, snmp/g_snmp_walk.c:
Started to rework the walk and table session API to reduce
overhead and memory leaks. More work needed.
2002-09-04 11:25 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* snmp/g_dispatch.c: Minor code cleanup.
2002-09-03 15:32 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* configure.in: More cleanups submitted by Tomasz Kloczko
<kloczek@pld.org.pl>.
2002-09-03 15:29 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* AUTHORS: Fixed Tomasz Kloczko's name and email address.
2002-09-03 15:27 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/Makefile.am: Patch from Tomasz Kloczko <kloczek@pld.org.pl>
to use $(top_builddir) and $(top_srcdir) rather than hard
constants.
2002-09-03 15:20 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* doc/scli.texinfo.in: Added the scli.texinfo.in file which is used
to actually create the scli.texinfo file. Added a fix to
automatically include the scli into the info directory provided
by Tomasz Kloczko.
2002-09-02 09:36 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* AUTHORS, ChangeLog, NEWS, configure.in, doc/scli.texinfo,
doc/texinfo.tex: Updates for release 0.2.12.
2002-09-02 09:21 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ip.c: Added some untested code to handle the
ipCidrRouteTable.
2002-09-02 09:02 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ip.c: Removed dead code.
2002-08-30 18:54 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* configure.in: Patches to keep autoconf happy submitted by Tomasz
Kloczko <kloczek@pld.org.pl>.
2002-08-14 08:28 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>
* scli/ip.c: Revised the output format of "show ip addresses".
2002-08-14 08:28 Jürgen Schönwälder <j.schoenwaelder@jacobs-university.de>