-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
14218 lines (10589 loc) · 479 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
2014-10-11 16:08 schoenw
* [r1812] lib/error.h, lib/parser-smi.c, lib/parser-smi.y,
lib/parser-sming.y, lib/parser-yang.y: Use %parse-param and
%lex-param to keep newer versions of bison happy.
2014-08-15 07:33 schoenw
* [r1811] mibs/ietf/BFD-STD-MIB[ADD],
mibs/ietf/BFD-TC-STD-MIB[ADD]: BFD MIB modules from RFC 7330 and
7331.
2014-08-15 07:32 schoenw
* [r1810] mibs/iana/IANA-ADDRESS-FAMILY-NUMBERS-MIB,
mibs/iana/IANA-BFD-TC-STD-MIB[ADD], mibs/iana/IANA-CHARSET-MIB,
mibs/iana/IANA-FINISHER-MIB, mibs/iana/IANA-GMPLS-TC-MIB,
mibs/iana/IANA-IPPM-METRICS-REGISTRY-MIB,
mibs/iana/IANA-ITU-ALARM-TC-MIB, mibs/iana/IANA-LANGUAGE-MIB,
mibs/iana/IANA-MALLOC-MIB, mibs/iana/IANA-MAU-MIB,
mibs/iana/IANA-PRINTER-MIB, mibs/iana/IANA-RTPROTO-MIB,
mibs/iana/IANATn3270eTC-MIB, mibs/iana/IANAifType-MIB,
mibs/iana/Makefile.am: Updated IANA MIB modules.
2014-07-23 22:02 schoenw
* [r1809] yang/ietf/ietf-inet-types.yang,
yang/ietf/[email protected][ADD],
yang/ietf/ietf-yang-types.yang,
yang/ietf/[email protected][ADD]: Updated the RFC
6021 modules to RFC 6991.
2014-07-17 12:25 schoenw
* [r1808] mibs/jacobs/JACOBS-LOWPAN-MIB: Updated version of the
JACOBS-LOWPAN-MIB.
2014-06-18 06:20 schoenw
* [r1807] yang/iana/Makefile.am, yang/iana/iana-if-type[ADD]:
Adding the first IANA maintained YANG module.
2014-06-18 06:19 schoenw
* [r1806] yang/ietf/ietf-interfaces.yang[ADD],
yang/ietf/[email protected][ADD],
yang/ietf/ietf-ip.yang[ADD],
yang/ietf/[email protected][ADD],
yang/ietf/ietf-ipfix-psamp.yang[ADD],
yang/ietf/[email protected][ADD]: Adding YANG
modules published as RFCs.
2014-06-13 21:27 schoenw
* [r1805] yang/ietf/[email protected]: Applying
Errata ID: 3862 and Errata ID: 3863.
2014-02-10 09:36 schoenw
* [r1804] mibs/iana/IANA-ENTITY-MIB[ADD], mibs/ietf/ENTITY-MIB,
mibs/ietf/UUID-TC-MIB[ADD]: Adding the new ENTITY-MIB and
associated modules (rfc6933).
2013-12-02 20:49 schoenw
* [r1803] tools/dump-cm.c: Fixed a typo detected by David Binderman
<[email protected]> using cppcheck.
2013-11-01 07:01 schoenw
* [r1802] mibs/ietf/LISP-MIB[ADD]: Added the LISP-MIB.
2013-10-18 07:58 schoenw
* [r1801] lib/smi.h.in: Avoid empty structs. Problem reported by
Gerald Combs <[email protected]>.
2013-10-01 20:15 schoenw
* [r1800] lib/yang-check.c: Patch for a bug uncovered by a new C
compiler. Reported by Martin Bjorklund.
2013-08-13 15:42 schoenw
* [r1799] configure.ac[CPY], configure.in[DEL], lib/parser-smi.c,
lib/parser-smi.y, test/mibs/LIBSMI-TEST-015-MIB: Trying to fix
the parsing of RFC 2580 NotificationVariation. Bug reported
by Daniel Chuang <[email protected]>.
2013-06-06 09:14 schoenw
* [r1798] lib/smi.c, lib/smi.h.in: Adding
SMI_RENDER_TYPE_RECURSIVE. This makes smiquery produce correct
output for refinements.
2013-06-06 09:13 schoenw
* [r1797] tools/smiquery.c: Removing some unused function call.
2013-06-06 09:11 schoenw
* [r1796] tools/dump-smi.c: Make sure refinements are properly
printed.
2013-06-06 09:10 schoenw
* [r1795] lib/smi2yang.c: Make sure the length restriction is
always generated.
2013-06-06 09:10 schoenw
* [r1794] test/Makefile.am, test/dumps/cm/BRIDGE-MIB[ADD],
test/dumps/corba/BRIDGE_MIB.idl[ADD],
test/dumps/corba/BRIDGE_MIB.oid[ADD],
test/dumps/identifiers/BRIDGE-MIB[ADD],
test/dumps/imports/BRIDGE-MIB[ADD],
test/dumps/jax/Dot1dBase.java[ADD],
test/dumps/jax/Dot1dBaseImpl.java[ADD],
test/dumps/jax/Dot1dBasePortEntry.java[ADD],
test/dumps/jax/Dot1dBasePortEntryImpl.java[ADD],
test/dumps/jax/Dot1dBasePortTable.java[ADD],
test/dumps/jax/Dot1dStaticEntry.java[ADD],
test/dumps/jax/Dot1dStaticEntryImpl.java[ADD],
test/dumps/jax/Dot1dStaticTable.java[ADD],
test/dumps/jax/Dot1dStp.java[ADD],
test/dumps/jax/Dot1dStpImpl.java[ADD],
test/dumps/jax/Dot1dStpPortEntry.java[ADD],
test/dumps/jax/Dot1dStpPortEntryImpl.java[ADD],
test/dumps/jax/Dot1dStpPortTable.java[ADD],
test/dumps/jax/Dot1dTp.java[ADD],
test/dumps/jax/Dot1dTpFdbEntry.java[ADD],
test/dumps/jax/Dot1dTpFdbEntryImpl.java[ADD],
test/dumps/jax/Dot1dTpFdbTable.java[ADD],
test/dumps/jax/Dot1dTpImpl.java[ADD],
test/dumps/jax/Dot1dTpPortEntry.java[ADD],
test/dumps/jax/Dot1dTpPortEntryImpl.java[ADD],
test/dumps/jax/Dot1dTpPortTable.java[ADD],
test/dumps/jax/NewRoot.java[ADD],
test/dumps/jax/TopologyChange.java[ADD],
test/dumps/metrics/BRIDGE-MIB[ADD],
test/dumps/mosy/BRIDGE-MIB[ADD],
test/dumps/netsnmp/bridge-mib-agt-stub.c[ADD],
test/dumps/netsnmp/bridge-mib-agt.c[ADD],
test/dumps/netsnmp/bridge-mib-mgr-stub.c[ADD],
test/dumps/netsnmp/bridge-mib.h[ADD],
test/dumps/python/BRIDGE-MIB[ADD],
test/dumps/smilint-smiv2/BRIDGE-MIB[ADD],
test/dumps/sming/BRIDGE-MIB[ADD],
test/dumps/smiv1/BRIDGE-MIB[ADD],
test/dumps/smiv2-smiv2/BRIDGE-MIB[ADD],
test/dumps/smiv2/BRIDGE-MIB[ADD],
test/dumps/tree/BRIDGE-MIB[ADD],
test/dumps/types/BRIDGE-MIB[ADD], test/dumps/xml/BRIDGE-MIB[ADD],
test/dumps/yang/BRIDGE-MIB[ADD]: Adding the BRIDGE-MIB to the
regression test suite.
2013-06-05 10:31 schoenw
* [r1793] test/dumps/yang/IF-MIB, test/dumps/yang/MAU-MIB,
test/dumps/yang/RMON2-MIB, test/dumps/yang/SNMPv2-MIB: Minor
updates to make the test suite pass yang tests.
2013-06-04 13:36 schoenw
* [r1792] mibs/iana/IANA-RTPROTO-MIB: Updating the
IANA-RTPROTO-MIB.
2013-06-04 13:30 schoenw
* [r1791] mibs/ietf/IPFIX-MIB, mibs/ietf/NHDP-MIB[ADD],
mibs/ietf/PSAMP-MIB[ADD], mibs/ietf/RBRIDGE-MIB[ADD],
mibs/ietf/RPKI-ROUTER-MIB[ADD]: Adding several new MIB modules
published by the IETF.
2013-06-04 13:13 schoenw
* [r1790] configure.in: Fixing the last fix.
2013-06-04 12:59 schoenw
* [r1789] doc/complexity.txt[ADD]: Adding my notes about complexity
so that they do not get lost.
2013-06-04 12:55 schoenw
* [r1788] tools/smiquery.c: Avoid buffer overruns so that smiquery
type SNMPv2-TC::RowStatus works.
Bug reported by Luiz Angelo Daros de Luca <[email protected]>.
2013-06-04 12:53 schoenw
* [r1787] configure.in: Make newer versions of autoconf happy.
2013-06-04 12:44 schoenw
* [r1786] mibs/jacobs/JACOBS-LOWPAN-MIB[ADD],
mibs/jacobs/JACOBS-RPL-MIB, mibs/jacobs/Makefile.am: Updating the
RPL-MIB and the LOWPAN-MIB to the latest I-D versions.
2013-01-15 12:02 schoenw
* [r1784] mibs/ietf/TED-MIB[ADD]: Adding the TED-MIB.
2013-01-08 18:17 schoenw
* [r1783] lib/error.c, lib/smi-check.c: Report an error if a
compliance statement lists a group both as
mandatory and optional.
2012-09-12 13:37 schoenw
* [r1782] lib/smi2yang.c: Now that we deal with INDEX objects more
carefully (kind of ignoring their
MAX-ACCESS), we can suppress the translation of not-accessible
scalars or
columns that are not part of the INDEX.
2012-09-11 08:12 schoenw
* [r1781] lib/smi2yang.c: Properly handle columnar objects that
appear multiple times in the index
and accessible-for-notify objects appearing in the index.
2012-08-30 14:44 schoenw
* [r1780] lib/smi2yang.c: Fixing leafref paths to table augments
again. Handle the case where the
augmenting columns refer to a table defined in a different MIB
module.
Reported by Martin Bjorklund.
2012-08-10 16:44 schoenw
* [r1779] lib/smi2yang.c: Make sure leafref paths to columns of
augmenting tables are setup
correctly (i.e., the path refers to the base table since the
augmenting
table does not really appear in YANG). Bug reported by Martin
Bjorklund.
2012-07-29 15:02 schoenw
* [r1778] mibs/iana/IANA-ADDRESS-FAMILY-NUMBERS-MIB,
mibs/iana/IANA-ITU-ALARM-TC-MIB, mibs/iana/IANA-LANGUAGE-MIB,
mibs/iana/IANA-MALLOC-MIB, mibs/iana/IANA-PRINTER-MIB,
mibs/iana/IANATn3270eTC-MIB, mibs/iana/IANAifType-MIB,
mibs/iana/Makefile.am: Fixed the URLs for IANA maintained MIB
modules in Makefile.am and
subsequently updated the IANA MIB modules.
2012-07-21 20:45 schoenw
* [r1777] lib/smi2yang.c: YANG does not allow subtyping of enums /
bits. How strange. Reported
by Martin Bjorklund.
2012-07-21 20:44 schoenw
* [r1776] mibs/iana/IANA-MAU-MIB: IANA update (whitespaces this
time ;-)
2012-06-12 06:10 schoenw
* [r1775] mibs/ietf/IPFIX-MIB, mibs/ietf/IPFIX-SELECTOR-MIB: New
version published as RFC 6615.
2012-05-08 07:14 schoenw
* [r1774] mibs/ietf/PMIPV6-MIB[ADD], mibs/ietf/PMIPV6-TC-MIB[ADD]:
Adding the Proxy Mobile IPv6 Management Information Base.
2012-04-02 14:36 schoenw
* [r1773] lib/smi2yang.c: Quick work around to suppress length
statements if an OCTET STRING
becomes a string data type. Eventually, we should have smart code
to calculate meaningful length restrictions.
2012-04-01 12:15 schoenw
* [r1772] tools/dump-cm.c, tools/dump-compliance.c,
tools/dump-corba.c, tools/dump-identifiers.c, tools/dump-ietf.c,
tools/dump-imports.c, tools/dump-jax.c, tools/dump-mosy.c,
tools/dump-netsnmp.c, tools/dump-perl.c, tools/dump-python.c,
tools/dump-scli.c, tools/dump-sizes.c, tools/dump-sming.c,
tools/dump-sppi.c, tools/dump-sql.c, tools/dump-svg.c,
tools/dump-types.c, tools/dump-xml.c, tools/dump-xsd.c: Various
updates to support YANG or to declare
that YANG is not supported.
2012-03-30 11:43 schoenw
* [r1771] test/dumps/corba/IF_MIB.idl,
test/dumps/corba/MAU_MIB.idl, test/dumps/corba/RMON2_MIB.idl,
test/dumps/corba/SNMPv2_MIB.idl, test/dumps/python/IF-MIB,
test/dumps/python/MAU-MIB, test/dumps/python/RMON2-MIB,
test/dumps/python/SNMPv2-MIB: Fixing even more regression test
cases.
2012-03-30 11:04 schoenw
* [r1770] tools/dump-corba.c, tools/dump-python.c: Generate a more
descriptive message consistent with other backends.
2012-03-30 10:11 schoenw
* [r1769] configure.in, win/config.h: Bumping the version number to
0.5.0.
2012-03-30 10:02 schoenw
* [r1768] lib/smi.c: Fixing a typo in smiDeclAsString.
2012-03-30 09:58 schoenw
* [r1767] yang/ietf/ietf-netconf-acm.yang[ADD],
yang/ietf/[email protected][ADD]: Adding
ietf-netcong-acm.yang.
2012-03-30 09:51 schoenw
* [r1766] test/dumps/orig-smiv2/IF-MIB,
test/dumps/orig-smiv2/MAU-MIB, test/dumps/orig-smiv2/RMON2-MIB,
test/dumps/orig-smiv2/SNMPv2-MIB: Fixing more regression tests.
2012-03-30 09:37 schoenw
* [r1765] test/smidiff/Printer-MIB.diff[DEL],
test/smidiff/Printer-MIB.new[DEL]: Dropping the Printer-MIB as a
diff regression test case.
2012-03-30 08:53 schoenw
* [r1764] test/smidiff/DISMAN-SCRIPT-MIB.diff,
test/smidiff/IF-MIB.diff, test/smidiff/INET-ADDRESS-MIB.diff,
test/smidiff/Printer-MIB.diff,
test/smidiff/SMIDIFF-TEST-004-MIB.diff: Fixing more regression
test cases.
2012-03-30 08:14 schoenw
* [r1763] lib/error.c: Fixing the error reporting such that errors
of imported
modules are suppressed unless the recursive flag of the
parser has been set.
2012-03-30 08:08 schoenw
* [r1762] test/dumps/netsnmp/mau-mib.h: Fixing the regression test
case.
2012-03-30 08:01 schoenw
* [r1761] test/dumps/smilint-smiv2/MAU-MIB: Updating the regression
test.
2012-03-30 07:56 schoenw
* [r1760] mibs/iana/IANA-MAU-MIB: Fixing errors in the
IANA-MAU-MIB.
2012-03-29 17:15 schoenw
* [r1759] .: Updating the svn:ignore property.
2012-03-29 17:12 schoenw
* [r1758] tools: Updating the svn:ignore property.
2012-03-29 03:45 schoenw
* [r1757] test/dumps/tree/IF-MIB, test/dumps/tree/MAU-MIB,
test/dumps/tree/RMON2-MIB, test/dumps/tree/SNMPv2-MIB: Fixing the
tree regression test cases.
2012-03-29 03:35 schoenw
* [r1756] test: Updating the svn:ignore property.
2012-03-29 03:29 schoenw
* [r1755] test/dumps/yang, test/dumps/yang/IF-MIB,
test/dumps/yang/MAU-MIB, test/dumps/yang/RMON2-MIB,
test/dumps/yang/SNMPv2-MIB: Fixing the regression test cases.
2012-03-29 03:17 schoenw
* [r1754] test/dumps/netsnmp/mau-mib.h: Fixed a regression test
case.
2012-03-29 03:12 schoenw
* [r1753] test/dumps/python/MAU-MIB: Fixing the regression test
case.
2012-03-28 12:00 schoenw
* [r1752] test/yang: Updating svn:ignore property.
2012-03-28 11:44 schoenw
* [r1751] win/config.h: Disabling SMING and enabling YANG by
default.
2012-03-28 11:44 schoenw
* [r1750] tools/Makefile.am, tools/dump-boilerplate.c[DEL],
tools/dump-ietf.c[CPY]: Renaming dump-boilerplate.c to
dump-ietf.c.
2012-03-28 11:42 schoenw
* [r1749] tools/dump-boilerplate.c, tools/smidump.c,
tools/smidump.h: Moving towards and ietf backend module producing
various formats only
relevant for IETF MIB work.
2012-03-28 11:41 schoenw
* [r1748] tools/dump-scli.c: Code cleanup.
2012-03-23 10:04 schoenw
* [r1747] tools/dump-yang.c: Fixing the broken fix for empty
strings.
2012-03-22 19:08 schoenw
* [r1746] tools/dump-yang.c: Print empty strings correctly.
2012-03-22 09:59 schoenw
* [r1745] lib/smi2yang.c: Making the code robust in cases where an
smiNode does not have a valid
smiType.
2012-03-21 18:39 schoenw
* [r1744] mibs/iana/IANA-ADDRESS-FAMILY-NUMBERS-MIB,
mibs/iana/IANA-CHARSET-MIB, mibs/iana/IANA-ITU-ALARM-TC-MIB,
mibs/iana/IANA-MALLOC-MIB, mibs/iana/IANA-MAU-MIB,
mibs/iana/IANA-PRINTER-MIB, mibs/iana/IANAifType-MIB,
mibs/iana/Makefile.am: Several updates of IANA MIB modules.
2012-03-21 18:29 schoenw
* [r1743] mibs/iana/IANA-IPPM-METRICS-REGISTRY-MIB: New and fixed
version of the IANA-IPPM-METRICS-REGISTRY-MIB.
2012-03-12 14:00 schoenw
* [r1742] mibs/jacobs/JACOBS-RPL-MIB: Properly prefixing the MIB
module while we are developing it.
2012-03-08 09:29 schoenw
* [r1741] mibs/ietf/IFCP-MGMT-MIB: Update of the IFCP-MGMT-MIB.
2012-03-08 09:27 schoenw
* [r1740] mibs/ietf/VRRPV3-MIB[ADD]: Adding a new MIB module.
2012-02-22 14:02 schoenw
* [r1739] lib/smi2yang.c: Created wrong leafref paths for scalars
since they are again in
a separate container. Reported by Martin Bjorklund
2012-02-03 15:35 schoenw
* [r1738] lib/smi.c, lib/smi2yang.c, tools/dump-smi.c: Improving
smiValueAsString(), replacing getValueString() in dump-smi.c,
dropping string quotes in the smi2yang conversion for
smiv2:defval values.
2011-12-14 17:27 schoenw
* [r1737] lib/smi.c: A stack smash fix provided by Martin Bjorklund
2011-12-14 14:06 schoenw
* [r1736] THANKS, lib/parser-sming.h, lib/parser-sming.y,
lib/parser-yang.y, lib/yang.h, win/Makefile.mingw,
win/config.h.in: Integrating a patch by Per Hedeland
<[email protected]> to make the mingw
build work again and to fix issues with some old versions of
bison. I
also disabled good old sming on the mingw build since it is also
by
default disabled on Unix builds.
2011-12-14 13:52 schoenw
* [r1735] THANKS, configure.in, lib/smi2yang.c, tools/dump-tree.c,
tools/dump-yang.c, tools/smidiff.c: A number of minor changes to
make --disable-yang work.
2011-12-14 08:02 schoenw
* [r1734] tools/dump-compliance.c, tools/dump-jax.c,
tools/dump-metrics.c, tools/dump-perl.c, tools/dump-smi.c,
tools/dump-sppi.c, tools/dump-tree.c, tools/dump-xsd.c,
tools/rea.c, tools/smiquery.c: Removed some dead code.
2011-12-14 07:50 schoenw
* [r1733] lib/parser-yang.y, lib/yang-check.c, lib/yang-check.h,
lib/yang-complex-types.c, lib/yang-data.c, lib/yang-data.h:
Fighting name space pollution originating from yang-check.c. More
code
cleanup work needed...
2011-12-14 07:49 schoenw
* [r1732] lib/smi2yang.c: Minor code cleanup to remove cruft.
2011-12-14 07:47 schoenw
* [r1731] lib/yang-check.c, lib/yang.h: Fixing a buffer boundary
problem reported by Martin Bjorklund.
2011-12-12 20:35 schoenw
* [r1730] lib/smi2yang.c: Do not segfault if there is no type
information (this is not possible
on a valid SMIv2 module but might happen if things go wrong).
2011-12-04 12:48 schoenw
* [r1729] lib/smi2yang.c: Import object-identifier-128 instead of
object-identifier.
2011-11-28 20:07 schoenw
* [r1728] lib/smi2yang.c: Generate a top-level container only when
needed.
2011-11-24 23:04 schoenw
* [r1727] lib/smi2yang.c: Oops, missing parenthesis.
2011-11-24 22:59 schoenw
* [r1726] lib/error.c, lib/smi2yang.c: Generate containers for the
scalars.
2011-11-24 15:04 schoenw
* [r1725] lib/smi.c, lib/smi.h.in, lib/smi_node.3.in,
tools/smiquery.c: Added and API function to retrieve alias nodes,
that is nodes that
share the same OID but have different names.
2011-11-23 14:06 schoenw
* [r1724] lib/smi2yang.c: Always use the module name as the
toplevel. Handle INDEX clauses correctly
that have the same object appear multiple times. Dropped
automatically
generated descriptions (these really should be comments). Do not
create
alias statements for things that are defined using YANG
statements.
2011-11-22 10:28 schoenw
* [r1723] lib/smi2yang.c: Generating smiv2:implied.
2011-11-22 10:20 schoenw
* [r1722] lib/smi2yang.c, lib/yang.c, lib/yang.h,
tools/dump-yang.c: Removing the option that controls whether
smiv2:* statements are
generated. Started to add support for smiv2:implied.
2011-11-22 09:55 schoenw
* [r1721] lib/smi2yang.c: Updating the SMIv2 to YANG type mapping
table.
2011-11-14 13:59 schoenw
* [r1720] lib/smi2yang.c: Two minor bug fixes.
2011-08-09 13:30 schoenw
* [r1719] mibs/ietf/FLOAT-TC-MIB[ADD]: Adding FLOAT-TC-MIB
(extracted from RFC 6340).
2011-07-28 10:27 schoenw
* [r1718] lib/parser-smi.c, lib/yang-check.c: Handling path lookups
for input and output nodes in an rpc definition.
2011-07-24 14:43 schoenw
* [r1717] yang/ietf/ietf-inet-types.yang,
yang/ietf/[email protected][CPY],
yang/ietf/ietf-netconf-monitoring.yang,
yang/ietf/[email protected][CPY],
yang/ietf/ietf-netconf-with-defaults.yang[ADD],
yang/ietf/[email protected][ADD],
yang/ietf/ietf-netconf.yang[ADD],
yang/ietf/[email protected][ADD],
yang/ietf/ietf-yang-types.yang,
yang/ietf/[email protected][CPY]: Adding recently
published YANG modules.
2011-07-23 18:37 schoenw
* [r1716] mibs/iana/IANA-RTPROTO-MIB, mibs/iana/IANAifType-MIB:
Updating IANA maintained modules.
2011-07-20 09:42 schoenw
* [r1715] configure.in, mibs/Makefile.am, mibs/jacobs[ADD],
mibs/jacobs/JACOBS-FS20-MIB[ADD],
mibs/jacobs/JACOBS-RPL-MIB[ADD], mibs/jacobs/JACOBS-SMI[ADD],
mibs/jacobs/Makefile.am[ADD]: Adding some Jacobs University MIB
modules.
2011-07-01 13:31 schoenw
* [r1714] lib/smi2yang.c, lib/yang.c, lib/yang.h: Added support for
the smiv2:alias statement so that all named OIDs
can be covered.
2011-05-20 19:49 schoenw
* [r1713] mibs/iana/IANA-PWE3-MIB[ADD],
mibs/ietf/PW-CEP-STD-MIB[ADD], mibs/ietf/PW-STD-MIB[ADD]: Adding
some recently published MIB modules.
2011-05-13 08:21 schoenw
* [r1712] mibs/ietf/SNMP-COMMUNITY-MIB: Updating the
SNMP-COMMUNITY-MIB to the RFC 3584 version.
2011-05-09 10:42 schoenw
* [r1711] lib/parser-smi.c, lib/parser-smi.y, lib/smi-data.c: A
patch suggested by Cedric Arbogast <[email protected]>
and Vincent Bernat <[email protected]> that avoids freeing memory
of pending nodes that in certain situations are still being used.
2011-05-06 09:39 schoenw
* [r1710] lib/smi2yang.c: Since the non-augmenting conceptual
tables now inherit config false,
we do not have to set this property explicitly.
2011-05-06 09:13 schoenw
* [r1709] lib/smi2yang.c: Moving tables below the module identity
derived top-level node so that we
have only one top-level container.
2011-04-15 18:23 schoenw
* [r1708] lib/smi2yang.c: Add a proper import for ietf-yang-smiv2
if the SMIv2 module contains an
OBJECT-IDENTITY definition (reported by Andy Bierman).
2011-04-13 12:24 schoenw
* [r1707] lib/smi2yang.c: Moving to a flat layout again (see netmod
Solution #01-01).
2011-04-12 12:30 schoenw
* [r1706] lib/smi2yang.c: Generate an smiv2:oid statement for
identities.
2011-04-12 08:39 schoenw
* [r1705] lib/smi.h.in, lib/smi2yang.c: Augments must be toplevel
(see netmod Solution #07-01).
2011-04-11 19:56 schoenw
* [r1704] lib/smi2yang.c: Special handling of accessible-for-notify
objects (see netmod Solution #05-01).
2011-04-11 14:53 schoenw
* [r1703] lib/smi2yang.c: Simpler names for notification containers
(see netmod Solution #06-01).
2011-04-05 10:00 schoenw
* [r1702] lib/smi.h.in, lib/smi2yang.c, lib/smi2yang.h, lib/yang.c:
Several updates to bring the implementation closer inline with
the
I-D. More work needed, but lets first try to resolve issues on
the
mailing list.
2011-03-28 08:22 schoenw
* [r1701] lib/common.c, lib/parser-yang.y, lib/scanner-yang.l,
lib/yang-check.c, lib/yang-data.c: Some portability fixed, more
to come.
2011-03-28 08:21 schoenw
* [r1700] lib/smi2yang.c: Calling the semantic analysis to check
the generated YANG module.
2011-03-23 13:46 schoenw
* [r1699] lib/smi.c: Prevent smiGetNextRange() from looping. Fixes
a bug reported by
Göran Runfeldt <[email protected]>.
2011-03-18 13:51 schoenw
* [r1698] tools/dump-fig.c: Generate proper type names.
2011-03-18 13:50 schoenw
* [r1697] lib/parser-smi.c, lib/parser-smi.y: Applying a patch from
Martin Bjorklund fixing the parsing of range
restriction of Unsigned32 types.
2011-03-18 13:39 schoenw
* [r1696] tools/dump-xsd.c: Applying a patch submitted by Martin
Bjorklund.
2011-03-16 14:03 schoenw
* [r1695] tools/dump-fig.c: Making the code work with the current
version of smidump.
2011-03-14 12:45 schoenw
* [r1694] README, THANKS: Updating the description to reflect YANG
support.
2011-03-14 12:30 schoenw
* [r1693] configure.in: Fixing the installation of YANG modules.
2011-03-14 12:28 schoenw
* [r1692] yang, yang/Makefile.am, yang/iana[ADD],
yang/iana/Makefile.am[ADD], yang/ietf, yang/site,
yang/site/Makefile.am: Improving the handling of YANG modules.
2011-03-14 12:23 schoenw
* [r1691] yang/ietf/Makefile.am: Fixing the installation of YANG
modules.
2011-03-14 10:52 schoenw
* [r1690] tools/dump-tree.c: Removing the --tree-compact option,
making the compact format the
default format. This reduces code complexity and is what I prefer
anyway.
2011-02-14 22:47 schoenw
* [r1689] lib/Makefile.am, lib/smi-data.c, lib/smi.c,
lib/smi2yang.c, lib/yang-data.c, lib/yang.c: Cleaning up some
#includes, adding some dependencies to Makefile.am so
that errormacros.h is created automagically.
2011-01-23 21:29 schoenw
* [r1688] lib/Makefile.am, lib/parser-yang.y: Adding dependencies
so that a parallel build creates errormacros.h
before compiling the parser modules.
2010-12-17 23:20 schoenw
* [r1687] mibs/iana/IANA-ADDRESS-FAMILY-NUMBERS-MIB,
mibs/iana/IANA-CHARSET-MIB, mibs/iana/IANA-FINISHER-MIB,
mibs/iana/IANA-GMPLS-TC-MIB,
mibs/iana/IANA-IPPM-METRICS-REGISTRY-MIB,
mibs/iana/IANA-ITU-ALARM-TC-MIB, mibs/iana/IANA-MALLOC-MIB,
mibs/iana/IANA-MAU-MIB, mibs/iana/IANA-PRINTER-MIB,
mibs/iana/IANAifType-MIB: Updating IANA MIB modules, changing to
Unix line end conventions.
2010-12-16 23:39 schoenw
* [r1686] mibs/ietf/CAPWAP-BASE-MIB[ADD],
mibs/ietf/CAPWAP-DOT11-MIB[ADD], mibs/ietf/DVB-RCS-MIB[ADD],
mibs/ietf/FORCES-MIB[ADD], mibs/ietf/IPFIX-MIB[ADD],
mibs/ietf/IPFIX-SELECTOR-MIB[ADD], mibs/ietf/NTPv4-MIB[ADD],
mibs/ietf/OSPFV3-MIB[ADD], mibs/ietf/PW-ATM-MIB[ADD],
mibs/ietf/PW-TC-STD-MIB[ADD], mibs/ietf/PW-TDM-MIB[ADD],
mibs/ietf/RSERPOOL-MIB[ADD], mibs/ietf/SNMP-SSH-TM-MIB[ADD],
mibs/ietf/SNMP-TLS-TM-MIB[ADD], mibs/ietf/SNMP-TSM-MIB[ADD],
mibs/ietf/VDSL2-LINE-MIB[ADD], mibs/ietf/VDSL2-LINE-TC-MIB[ADD]:
Adding a bunch of MIB modules published by the IETF during the
last
1+ year.
2010-12-16 22:45 schoenw
* [r1685] yang/ietf/ietf-netconf-monitoring.yang[ADD]: Adding
ietf-netconf-monitoring.yang (RFC6022).
2010-12-16 22:40 schoenw
* [r1684] Makefile.am, configure.in, yang[ADD],
yang/Makefile.am[ADD], yang/ietf[ADD],
yang/ietf/Makefile.am[ADD], yang/ietf/ietf-inet-types.yang[ADD],
yang/ietf/ietf-yang-types.yang[ADD], yang/site[ADD],
yang/site/Makefile.am[ADD]: Adding the first YANG modules to the
distribution.
2010-12-14 15:43 schoenw
* [r1683] lib/smi_config.3.in: Trying to improve the documentation
of smiInit().
2010-12-10 07:07 schoenw
* [r1682] lib/smi2yang.c: Pruning subtrees containing only
conformance definitions, minor bug fixes.
2010-11-08 02:57 schoenw
* [r1681] tools/Makefile.am, tools/dump-yang-sk.c[DEL],
tools/dump-yang.c[CPY], tools/smidump.c, tools/smidump.h: Making
yang-sk the new yang output driver.
2010-11-08 02:51 schoenw
* [r1680] tools/Makefile.am, tools/dump-yang.c[DEL],
tools/smidump.c, tools/smidump.h: Removing the "old" dump-yang.c
module written during the first YANG
design team meeting.
2010-11-08 02:48 schoenw
* [r1679] lib/smi2yang.c, lib/smi2yang.h, lib/yang.c, lib/yang.h,
tools/dump-yang-sk.c: Updating the implementation to reflect
draft-schoenw-netmod-smi-yang-01.
2010-10-15 17:56 schoenw
* [r1678] tools/dump-boilerplate.c: Convinced the boilerplate
driver to generate xml for xml2rfc.
2010-09-11 11:46 schoenw
* [r1677] THANKS, lib/smi.c: Fixing a buffer overflow caused by
long numeric OIDs (CORE-2010-0819).
2010-09-03 08:23 schoenw
* [r1676] TODO, lib/parser-smi.c, lib/parser-smi.y, lib/smi.h.in,
lib/yang-data.c, tools/dump-smi.c, tools/dump-sppi.c,
tools/dump-svg.c: Making the ptr in SmiValue an unsigned char to
prevent unexpected
sign conversions when printing hex values. Problem reported by
Claus Klein <[email protected]>.
2010-08-20 06:44 schoenw
* [r1675] TODO, configure.in, lib/Makefile.am, lib/check.c[DEL],
lib/check.h[DEL], lib/common.c, lib/common.h, lib/data.c[DEL],
lib/data.h[DEL], lib/error.h, lib/parser-smi.c, lib/parser-smi.h,
lib/parser-smi.y, lib/parser-yang.y, lib/scanner-smi.h,
lib/scanner-smi.l, lib/smi-check.c[CPY], lib/smi-check.h[CPY],
lib/smi-data.c[CPY], lib/smi-data.h[CPY], lib/smi.c,
lib/smi.h.in, lib/smi2yang.c, lib/util.h, lib/yang-check.c,
lib/yang-complex-types.c, lib/yang-data.c, lib/yang-data.h,
lib/yang.c, lib/yang.h, lib/yang_node.3.in[ADD],
tools/dump-corba.c, tools/dump-identifiers.c, tools/dump-mosy.c,
tools/dump-scli.c, tools/dump-tree.c, tools/dump-types.c,
tools/dump-yang-sk.c, tools/dump-yang.c, tools/smid.c,
tools/smidiff.c, tools/smiquery.c, win/Makefile.mingw: This is a
bigger change to improve YANG support and code/library
organization. In particular, this checking does the following:
- adding a collection of SMI stringification functions
(smiNodekindAsString, smiDeclAsString, smiValueAsString,
smiNodekindAsString, smiAccessAsString, smiStatusAsString,
smiBasetypeAsString, smiLanguageAsString
- adding a collection of YANG stringification functions
(yangDeclAsString, yangStatusAsString
- started reorganization of the source code modules to more
cleanly
separate smi related sources files from yang related source files
and common source files
- adding an smi2yang module that does an in memory translation of
an
SMIv2 parse tree into a YANG parse tree
- enabling the YANG parser by default
- initial bits of a yang_node.3 man page
2010-08-16 08:12 kuryla
* [r1674] lib/parser-yang.y, lib/scanner-yang.l, lib/yang-check.c,
lib/yang-data.c, lib/yang.c, lib/yang.h: added
fraction-digits-stmt to the yang parser
2010-06-24 10:09 schoenw
* [r1673] lib/common.c, lib/parser-yang.y, lib/scanner-yang.h,
lib/scanner-yang.l, lib/yang-data.c, lib/yang.h,
tools/dump-jax.c, tools/dump-tree.c, tools/smilint.c: Some code
maintenance to fix potential bugs and to be more C89 friendly.
2010-06-24 09:35 schoenw
* [r1672] tools/dump-yang-sk.c: Support the new SMI to YANG
conversion so we only have one YANG output
driver in the long run.
2010-06-24 09:33 schoenw
* [r1671] lib/Makefile.am, lib/data.h, lib/smi2yang.c[ADD],
lib/smi2yang.h[ADD], lib/yang-data.c, lib/yang.h: Adding an SMI
to YANG conversion module.
2010-06-22 08:17 schoenw
* [r1670] tools/dump-smi.c: No way to generate SMI from YANG.
2010-06-21 13:01 schoenw
* [r1669] tools/smidump.c: Removing unwanted debug output.
2010-06-21 12:59 schoenw
* [r1668] lib/yang-complex-types.h: Handling an unfortunate name
clash.
2010-06-21 12:58 schoenw
* [r1667] tools/dump-yang-sk.c: Fixing indentation bugs.
2010-04-29 11:01 kuryla
* [r1666] tools/dump-yang-sk.c: pretty print for yang dump-sk
2010-04-22 09:55 kuryla
* [r1665] lib/parser-yang.h, lib/parser-yang.y, lib/scanner-yang.l:
added comments to mark the complex type extension changes
2010-04-20 09:40 kuryla
* [r1664] test/parser-yang-ct.test.in[ADD]: added a new testing
script for yang complex type extension
2010-04-20 09:31 kuryla
* [r1663] configure.in, lib/Makefile.am, lib/error.c,
lib/parser-smi.c, lib/parser-yang.y, lib/scanner-yang.l,
lib/yang-check.c, lib/yang-complex-types.c[ADD],
lib/yang-complex-types.h[ADD], lib/yang-data.c, lib/yang-data.h,
lib/yang.c, lib/yang.h, test/parser-yang.test.in,
test/yang-ct-ext[ADD], test/yang-ct-ext/abstract.yang[ADD],
test/yang-ct-ext/abstract.yang.exp[ADD],
test/yang-ct-ext/augment.yang[ADD],
test/yang-ct-ext/augment.yang.exp[ADD],
test/yang-ct-ext/complex-types.yang[ADD],
test/yang-ct-ext/complex-types.yang.exp[ADD],
test/yang-ct-ext/config.yang[ADD],
test/yang-ct-ext/config.yang.exp[ADD],
test/yang-ct-ext/ct.yang[ADD], test/yang-ct-ext/ct.yang.exp[ADD],
test/yang-ct-ext/deviation.yang[ADD],
test/yang-ct-ext/deviation.yang.exp[ADD],
test/yang-ct-ext/deviation2.yang[ADD],
test/yang-ct-ext/deviation2.yang.exp[ADD],
test/yang-ct-ext/expands.yang[ADD],
test/yang-ct-ext/expands.yang.exp[ADD],
test/yang-ct-ext/grammar1.yang[ADD],
test/yang-ct-ext/grammar1.yang.exp[ADD],
test/yang-ct-ext/grammar2.yang[ADD],
test/yang-ct-ext/grammar2.yang.exp[ADD],
test/yang-ct-ext/imported.yang[ADD],
test/yang-ct-ext/imported.yang.exp[ADD],
test/yang-ct-ext/importing.yang[ADD],
test/yang-ct-ext/importing.yang.exp[ADD],
test/yang-ct-ext/importing2.yang[ADD],
test/yang-ct-ext/importing2.yang.exp[ADD],
test/yang-ct-ext/instance-identifier.yang[ADD],
test/yang-ct-ext/instance-identifier.yang.exp[ADD],
test/yang-ct-ext/instance.yang[ADD],
test/yang-ct-ext/instance.yang.exp[ADD],
test/yang-ct-ext/key.yang[ADD],
test/yang-ct-ext/key.yang.exp[ADD],
test/yang-ct-ext/references.yang[ADD],
test/yang-ct-ext/references.yang.exp[ADD],
test/yang-ct-ext/refine.yang[ADD],