-
Notifications
You must be signed in to change notification settings - Fork 16
/
ChangeLog
3451 lines (2182 loc) · 105 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
commit b3431b7e9f34bb2eea02de6b93118016701fa6b3
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 19:58:38 2024 +0100
int128 is not available on 32-bit platforms => added 32-bit architecture case for printing the number of hosts if prefix < 64.
commit cb19320d906d2066bbc17d852ddf1cf72f75f93b
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 11:12:00 2024 +0100
Bash completion has recommendation for iproute package, to obtain the local address.
commit c1384ad4e13a44cc01984b8e6821125293181695
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 11:00:49 2024 +0100
Fedora fix for Bash completion.
commit 0ec3a049914d1401f9b60d5d47e382d1fca87582
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 10:53:37 2024 +0100
Bash completion clean-up.
commit 23791dbe7d4e04f7e7b59a984db0658dbc229edb
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 10:28:21 2024 +0100
CMakeLists.txt updates, includling "uninstall" target.
commit 3831dca333dcc1a89d3e81ed23e87f0b74ea5908
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 10:23:11 2024 +0100
Minor manpage clean-up.
commit 1da6dce2cf7deffcc332f579c07df72e55c2bd21
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 10:07:36 2024 +0100
Another README.md update.
commit 426f82ac22b8313f46691121bd5ecf8ce2486ec1
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 10:05:17 2024 +0100
Updated README.md.
commit f8985b37b6301e781fa1b0153e3966b677645337
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 10:05:07 2024 +0100
* Improved address type handling for special cases.
* Print number of hosts using unsigned __int128, to provide the exact number in all IPv6 cases.
commit 59aebb3d8fbee2d730a378a067a487b435ff4bfe
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 09:36:45 2024 +0100
Using "unsigned __int128" for maxHosts, to show the exact number for all IPv6 networks.
commit 7caff95489abd918c7f5401ad9605ba0b810c548
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 13 08:55:01 2024 +0100
Updated build script.
commit d18c8ed301663698fa44da284e810beed669ada1
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 20:35:43 2024 +0100
Improved Bash completion.
commit 9b51661dd04ccb4a71bc2f47bc00c7f3f057bb70
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 20:30:04 2024 +0100
Improved Bash completions.
commit 03d5fe615750ec821cdce0b29bbd46ca06fd8bc2
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 11:29:29 2024 +0100
Updated build script.
commit 8171d75cb93d5a23d939ba1d6b694c30f0fa7f34
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 11:29:02 2024 +0100
Minor clean-ups.
commit bea90bf1430f6dd5b56d08475fd85e9f2e5f6a00
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 09:51:29 2024 +0100
Some clean-ups.
commit 425e2d9e1092c1f4b89809ae9b8c15d08f7d012e
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 09:47:57 2024 +0100
Updated Bash completion.
commit b935c52f021458205dda525bbbb63f78684a5733
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 12 09:47:16 2024 +0100
Added option to print program version.
commit 6d5083244458a31b0e4a74c241efc82cdc5bd139
Merge: 10a8ae5 d2712aa
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 4 09:59:18 2024 +0100
Merge branch 'master' of github.com:dreibh/subnetcalc
commit 10a8ae5f269c7cfde39117a3530617ab1d3565be
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 4 09:55:07 2024 +0100
Updated workflows.
commit d2712aab9bed5e0ae323617dcaf7ce6567c0cd86
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 23 14:39:30 2024 +0200
Updated manpage.
commit e1d17a0f6cf0f634a549b0f2b89c329c2ef29d43
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 23 14:37:55 2024 +0200
FreeBSD also has /dev/random and /dev/urandom.
commit 6f24a16ddfd1fd4fe9b9c7c1bda08afe2566631d
Author: Thomas Dreibholz <[email protected]>
Date: Sun Oct 20 18:10:56 2024 +0200
Updated workflow.
commit 5a5053181a6861b665f994cf1d60f68da1ea81a1
Author: Thomas Dreibholz <[email protected]>
Date: Sun Oct 20 18:04:33 2024 +0200
Formatting improvements.
commit 4db634f4d695f5d42f064d4660d22a5f59a31a1b
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 23:04:11 2024 +0200
Improved CMakeLists.txt.
commit 93b591c8baa5b5c5a6e28bd9281cd197147368d5
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 21:42:04 2024 +0200
Bash completion now working under FreeBSD.
commit 14261aeec63d46044f2c799eaa422d76071ed4fc
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 21:05:53 2024 +0200
FreeBSD packaging update.
commit 3a4410ed81aa62e90b8a583753f96b09303f700b
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 20:56:26 2024 +0200
Further clean-ups.
commit 2c061b5b18f4959d1d4cb029f54f4fd054af03e0
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 20:46:22 2024 +0200
FreeBSD CMakeLists.txt fix.
commit fa1533e1c5cb7f777557d248f091676df9cd4807
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 19:13:14 2024 +0200
Some clean-ups.
commit 98b9fe707392e9053cc26791303d947982e59924
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 19:06:13 2024 +0200
Added translations.
commit 7ad1e4bad3760491cea704dbec94e26f9de0ad95
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 18:54:39 2024 +0200
Improved CMakeLists.txt.
commit 7ca540b8ddf158a9e0d9497ea5b79d1831560877
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 18:54:13 2024 +0200
Improved CMakeLists.txt, removed dependency on PkgConfig.
commit 1f74f09bffb2478de57bc8ff7fc2985f76895bab
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 18:03:21 2024 +0200
Added full I18N support.
commit bfeaf26bb10d51bb437d2b01cb11ad8d13f6c7f4
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 16:52:44 2024 +0200
Improved manpage.
commit 30d019abcdec0bb155dce20cf15bd1f4ff7ae956
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 16:40:46 2024 +0200
Bugfix: Print correct hostname when nocolor mode is on.
commit 5710fdb0b116cb60513a2333fef5c3557763d677
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 16:36:25 2024 +0200
Added Bash completion script.
commit 5f05758a184ef240d95b518dc73727fd1e885c1f
Author: Thomas Dreibholz <[email protected]>
Date: Sat Oct 19 16:21:54 2024 +0200
Updated CI scripts.
commit 3f0bcc01224dd0c8ca09f6879a6c3a17d8a51f33
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 9 14:19:09 2024 +0200
Updated workflows.
commit e8203ca0533577eb091e31e2d5a8768a90f306d8
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 9 14:08:32 2024 +0200
Updated CI scripts
commit a436ce08216ed2bcb803469e5129bacacd7858e7
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 9 14:07:16 2024 +0200
Removed LSM entry.
commit 6f78a412be0b65032d6d6024d07f73334c5db756
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 9 14:07:12 2024 +0200
Minor update.
commit feaa35a68d469e9b7c4f1e45589c39f1c0a48877
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 9 13:47:04 2024 +0200
Updated CI scripts
commit 98c67c76a84b1b9b8d70411cc27af7f740b38bf0
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 9 13:47:01 2024 +0200
Updated build scripts
commit 98c8a525ca5eb96330ea309b0b46fc52d1694690
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 9 13:46:48 2024 +0200
Updated autogen.sh script.
commit 1e0e5e598551f1eeb8bc5fda852efd6951985242
Author: Thomas Dreibholz <[email protected]>
Date: Mon Feb 12 21:41:32 2024 +0100
Updated FreeBSD packaging.
commit 181f1341b20abda99aa9b50ce755cbbe0f8ea89a
Author: Thomas Dreibholz <[email protected]>
Date: Mon Feb 12 21:36:42 2024 +0100
New release subnetcalc-2.5.1.
commit 22e2ef12f95bb1b55b858e5d44b1cce6bf91b75f
Merge: 549f589 3c97215
Author: Thomas Dreibholz <[email protected]>
Date: Mon Feb 12 14:44:55 2024 +0100
Merge branch 'dreibh/build-fix-12feb2024'
commit 549f589138b61a81b106c7d7ab1803d8a1400423
Author: Thomas Dreibholz <[email protected]>
Date: Mon Feb 12 12:30:38 2024 +0100
Some code clean-ups.
commit 3c9721503e8365d207623e631a63dc8728244d70
Author: Thomas Dreibholz <[email protected]>
Date: Mon Feb 12 12:19:23 2024 +0100
Fix for FreeBSD build issue.
commit 383574634fbfbf0f2729e3624b1c96e4c3a40df5
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 16:00:08 2024 +0100
Updated LSM entry.
commit 011cca97db5d8e22a2af4a640f2b81af5e3ac740
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 15:42:31 2024 +0100
New release subnetcalc-2.5.0.
commit 7130ef042d4cb4a0f8bc1015671d11a5bedb33e9
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 15:35:11 2024 +0100
Fix for output to stderr instead of stdout for 6to4 address (Debian Bug #1061757).
commit acbacf967686d74caa171294ce3012eed2182483
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 15:28:32 2024 +0100
Another metadata update.
commit a967188d323284e3dc187a7cb166d018ca9ea28c
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 15:27:21 2024 +0100
Updated metadata file.
commit 292528da7acaf5f79eeaf1b2098d2f8fa3acb64c
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 15:23:08 2024 +0100
Test script fix.
commit e77f837030f7590929b286f1bc160b8756c869d0
Merge: 04fadf5 c12e955
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 15:22:05 2024 +0100
Merge pull request #13 from silkeh/add-nat64-support
Format IPv4-embedded IPv6 addresses
commit 04fadf509609da8462a5a0705dd124337a3c4e02
Merge: ef7b61b 3b20088
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 15:04:31 2024 +0100
Merge branch 'master' into dreibh/hex-address
commit 3b20088832b01e7c428be3feb771d750366ac8f5
Author: Thomas Dreibholz <[email protected]>
Date: Sat Feb 10 10:39:26 2024 +0100
Updated FreeBSD packaging files.
commit 2eb6da1e57513ee192bacdaafabe24b67301d698
Author: Thomas Dreibholz <[email protected]>
Date: Mon Dec 18 10:06:46 2023 +0100
Updated FreeBSD packaging.
commit 723596a99959175b0386061ac5889e5e802ac85e
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 7 12:32:29 2023 +0100
Improved FreeBSD test script.
commit b07f3c1f5e4a8fe7f059860cd97b37c8b4167e8e
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 7 12:05:53 2023 +0100
Updated FreeBSD packaging files.
commit 1de65047477119be9c3d833dc424f3144240d920
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 7 10:20:11 2023 +0100
Updated packaging configuration.
commit e5062d4dc2a2dd0f9ba29c846ba24c102931c556
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 6 16:50:52 2023 +0100
Updated LSM entry.
commit 38dd88614ba8dc4f41814ddc87b08822c7f27daa
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 6 16:48:23 2023 +0100
New release subnetcalc-2.4.23.
commit 1be7a7ad573518fb0b4b45435e1ccd1244a57343
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 15 11:42:31 2023 +0100
Dependency improvements.
commit 302da2aae5f8a3386fc8ab6b15e3b1ad454ace5b
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 15 10:53:51 2023 +0100
Packaging clean-ups.
commit bd1087c6fd304fd8579ae552885d55903349baf6
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 15 09:52:31 2023 +0100
Updated build scripts
commit 6179b948c01dff102590f8e116c23f8cda99ea4c
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 15 09:33:42 2023 +0100
Updated build scripts
commit bdd516a3bbb83507866594473a6538cc4909ffef
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 17:50:51 2023 +0100
Workflows update.
commit 4eb196cfb8aede786fc58a311daa7ca7cda120fa
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 17:10:17 2023 +0100
Minor update.
commit 925d09a409e05ca07973b5966559d0d9692ece64
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 16:22:36 2023 +0100
Header updates.
commit 028ee2e03e7280003487c6f717f39b22033811de
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 16:16:10 2023 +0100
Updated CI scripts
commit 72f7e67e22761f235076b273f6c759197cbb2bcf
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 16:15:53 2023 +0100
Updated build scripts
commit 89a2bc288380a47b1546257de6dd1d7e51595743
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jun 30 23:02:26 2023 +0200
Updated LSM entry.
commit 7214f02eaa1487d1c2efe217fbde38cd24c664b3
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jun 30 22:59:27 2023 +0200
New release subnetcalc-2.4.22.
commit 614e82c43add9edb59b7ea9fa6fb8571b55f4a55
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jun 30 22:25:44 2023 +0200
Updated build scripts
commit fd872df30871f94e717aa668844e7adcb49b4d82
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jun 30 22:25:28 2023 +0200
A small clean-up.
commit d609ed49f611725b39a3b2754e568a2a68920d81
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jun 30 22:18:17 2023 +0200
Bugfix: Fixed wrong handling of 7th block in solicited node multicast address.
commit 61b08c3e2a9a7a80d44b09dab392a5af6d82ec06
Author: Thomas Dreibholz <[email protected]>
Date: Sun Jan 22 22:34:07 2023 +1100
New release subnetcalc-2.4.21.
commit c39047209b82ea3ccc80b6d83e63ae5e6f4e769f
Author: Thomas Dreibholz <[email protected]>
Date: Sat Jan 21 22:02:47 2023 +1100
Updated build scripts
commit ad1a560dcf4cd5f0cf6c7e4dcfb2bbbbd8b13b2d
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jan 6 21:38:01 2023 +1100
URL change from UDE to NNTB.
commit 0f8025f259f9981c015226d4bc93c55cced5db03
Author: Thomas Dreibholz <[email protected]>
Date: Thu Jan 5 22:44:24 2023 +1100
URL fix: UDE -> NNTB.
commit 4328d5e08d83c15a22f91c5e2fae76e8b4c6b7d1
Author: Thomas Dreibholz <[email protected]>
Date: Thu Jan 5 22:43:07 2023 +1100
Updated CI scripts
commit 2e748538dc42fdb03860e552bb277c7efcd80552
Author: Thomas Dreibholz <[email protected]>
Date: Thu Jan 5 22:43:06 2023 +1100
Updated build scripts
commit 67e5f7ed5d1fd5fc0b58b17bdbd1e642090d4f58
Author: Thomas Dreibholz <[email protected]>
Date: Sun Sep 11 13:04:30 2022 +0200
New release subnetcalc-2.4.20.
commit 97862488a68096eea2738a575aadb9e9435805aa
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 31 11:47:32 2022 +0200
Removed Vcs-* fields from debian/control.
commit 16a8f3d6b2a0f3fe69540630167f9af2af909e3f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 31 11:20:07 2022 +0200
Updated CI scripts
commit 632af4f05ea49dc9cb4bb43b673f89e1965c66ce
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 31 11:20:05 2022 +0200
Updated build scripts
commit c12e955fd7dc941533a27fd5cc4c49bf212054b1
Author: Silke Hofstra <[email protected]>
Date: Sun Aug 28 13:57:52 2022 +0200
Format IPv4-embedded IPv6 addresses
IPv4-embedded IPv6 addresses (as defined in RFC 6052 and RFC 8215) are
currently formatted as regular IPv6 addresses. Format these addresses in the
same way as IPv4-compatible or IPv4-mapped IPv6 addresses to make them easier to read.
Formatting is only done when the Well-Known Prefix (64:ff9b::/96) or the local use
translation prefix (64:ff9b:1::/48) is used.
commit 91831ce55d93e43079f55b3691a1d3e89283ab50
Author: Thomas Dreibholz <[email protected]>
Date: Thu Jun 2 12:06:06 2022 +0200
Updated README.md.
commit a1237967d64703d5528f1e7f8cedfba9dc222704
Author: TechnologyClassroom <[email protected]>
Date: Fri Oct 25 14:07:23 2019 -0400
Copy readme from site
commit ef7b61be49b090c627a3aa2cd2659468f7092903
Author: Thomas Dreibholz <[email protected]>
Date: Thu Jun 2 11:47:28 2022 +0200
Also print IPv4 address as hexadecimal.
commit 9581fa23b22d3936a77e0d2073a69eac611e57d9
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 16 12:22:30 2022 +0100
Updated build scripts
commit dde3270d45ce5c8cc2b120f4bf42d0232d5b4fe9
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 30 15:29:55 2021 +0100
Removed invalid field "Homepage" from debian/upstream/metadata
commit 5fb80869c9c20028414f1c414db725c4da4fc482
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 22:01:15 2021 +0100
Updated CI scripts
commit 8c9313516ce747cd99772128704faa2d3d5bf7a7
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 21:57:50 2021 +0100
Updated build scripts
commit bf0b903cb5d75c61c000f4b7b32b2f9c730bf93a
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 15:51:39 2021 +0100
Added CI workflows.
commit 0c1e7c3e64f413c49f059484af5ea9f510187464
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 15:51:12 2021 +0100
Updated CI scripts
commit 5a5851de2db6e76650fd2d917ac8cd0913e5152d
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 15:51:12 2021 +0100
Travis CI is dead. Removed obsolete Travis CI scripts and configuration.
commit b5921ecada3d0b71a7f07adc2abead77dd32ab14
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 15:51:12 2021 +0100
Updated build scripts
commit 4ccc7347eeb2346951ee5d9c7a6129d2c4f90fdd
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 8 20:34:36 2021 +0100
Updated LSM entry.
commit 169e78a384d51787dca24f1a8b58a6e3bb12fde6
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 8 20:10:40 2021 +0100
New release subnetcalc-2.4.19.
commit 22a51e2a0df6371e3079e0e30352914e37165b07
Author: Thomas Dreibholz <[email protected]>
Date: Sun Nov 7 19:52:14 2021 +0100
Dependency update.
commit 01817325425686aa4ab26b1d58cb4c9cdcefe567
Author: Thomas Dreibholz <[email protected]>
Date: Sun Nov 7 19:00:41 2021 +0100
Updated build scripts
commit b32f71272349630aefd367736d9eb94fa9eaace3
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 6 20:49:33 2021 +0100
Updated build scripts
commit f88060bfc1bf2ff635829d65e2f414dc1ed70127
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 6 20:16:02 2021 +0100
Version update.
commit 3ce7f9516526b4981e003bf76953849644089d4a
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 6 20:13:03 2021 +0100
Updated build scripts
commit fe6fb2e9bc8855bde524835bf49ea0fbdaaf917f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 3 18:22:50 2021 +0100
Updated build scripts
commit f77bbc9f9169fcc0ffd89360bae2bd19ee6da9c6
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 3 18:22:49 2021 +0100
Updated build scripts
commit b3a70f011a97c218dde0e488c946d260daa3e1df
Author: Thomas Dreibholz <[email protected]>
Date: Tue Oct 19 16:06:20 2021 +0200
Updated build scripts
commit 9df1c2c341493021cdaa9123fd94b5ee5e8670d0
Author: Thomas Dreibholz <[email protected]>
Date: Mon May 3 21:23:25 2021 +0200
Updated build scripts
commit 7cc35e38d20da4bc74276d57e075c48dbb60506b
Author: Thomas Dreibholz <[email protected]>
Date: Sun Mar 7 00:00:41 2021 +0100
Updated LSM entry.
commit 4c6b0dbc80370f9ed2b9a74c097d1910a1207b20
Author: Thomas Dreibholz <[email protected]>
Date: Sat Mar 6 23:40:23 2021 +0100
New release subnetcalc-2.4.18.
commit b741c839e85312fa84b8c766930272cac432fd13
Author: Thomas Dreibholz <[email protected]>
Date: Fri Mar 5 18:52:37 2021 +0100
Updated Travis CI configuration
commit c827240b1f0e446905e50969aefaffafb62ed5f7
Author: Thomas Dreibholz <[email protected]>
Date: Fri Mar 5 16:01:45 2021 +0100
Updated build scripts
commit f12da881d72a69d72d16bd58e3f3cbe37a2de4aa
Merge: bb70bbb a39f2fc
Author: Thomas Dreibholz <[email protected]>
Date: Thu Mar 4 21:10:28 2021 +0100
Merge branch 'master' of github.com:dreibh/subnetcalc
commit bb70bbb01bd6eb08a7bc8bc951bee168c3444038
Author: Thomas Dreibholz <[email protected]>
Date: Thu Mar 4 21:10:20 2021 +0100
Updated Travis CI configuration.
commit a39f2fcdbbfd04f5d32df44a4a4e9cf7080af146
Author: Thomas Dreibholz <[email protected]>
Date: Wed Mar 3 19:41:47 2021 +0100
Updated script.
commit 2ffbebb96846d1de43fdc3676f6b2e0d22d018a3
Author: Thomas Dreibholz <[email protected]>
Date: Mon Mar 1 21:25:37 2021 +0100
Removed unused variable assignments reported by static analysis.
commit 7c687eb11fbb84ff9a3ac47277f97825d6d4e37e
Author: Thomas Dreibholz <[email protected]>
Date: Mon Mar 1 21:22:43 2021 +0100
Removed unused variable assignment reported by static analysis.
commit 849ed7376d4b43b64ec4c90f1e0d943db6204f06
Author: Thomas Dreibholz <[email protected]>
Date: Mon Mar 1 21:20:30 2021 +0100
Updated build scripts
commit df9d373d99d7a8b445db9be0dc007ae6d18aae97
Author: Thomas Dreibholz <[email protected]>
Date: Mon Mar 1 16:30:36 2021 +0100
Updated build scripts
commit a91677efbc1a031bf7f866ffef9031fecd7b1341
Author: Thomas Dreibholz <[email protected]>
Date: Mon Mar 1 16:13:22 2021 +0100
Improved autogen.sh with options for static analysis.
commit 7bc3492291c6dc9a73ece380e7319deeb29c2040
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 17:57:11 2021 +0100
Cleaned up CMakeLists.txt.
commit ead3bbcd1a3a0d1f8306daf53f758aa1198c70f3
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:19:07 2021 +0100
Updated build scripts
commit 528183434437f7fbd1a79c976993806a051b0a6c
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:19:06 2021 +0100
Updated build scripts
commit 601ac5bc2e1da7aeeab3a548bd87e40b27ef92be
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:17:37 2021 +0100
Updated build scripts
commit 344bcdfcdb316df40f3bf33f0fbcd67c24ad4972
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:17:37 2021 +0100
Updated build scripts
commit f324cf27c038092f7cbd97fac3c46aad01131230
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:16:37 2021 +0100
Header updates.
commit 8246215f12681969a9b50915336e7d6e7a816c83
Author: Thomas Dreibholz <[email protected]>
Date: Sat Jan 30 07:40:00 2021 +0100
Updated Travis CI configuration
commit 8582512c5823b98f3990098335d406570efbc915
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 13 19:47:56 2020 +0100
Updated LSM entry.
commit 947e67ac5a305211e2d253da84ea5681942952a8
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 13 19:00:20 2020 +0100
New release subnetcalc-2.4.17.
commit 13b8b6b0bceb874750e88d25621b0f97cb1043cb
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 13 10:24:50 2020 +0100
Updated Travis CI configuration.
commit e7253acd9064449ee0d2832115573ab263e698d0
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 11 22:23:25 2020 +0100
Packaging improvements.
commit 30951886a5a1c0610cffa3631f6204fecb468882
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 11 21:42:01 2020 +0100
Updated build scripts
commit caa48df3ae64acc1642474e7b7ea83a3f19d57ff
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 11 13:01:17 2020 +0100
Updated build scripts
commit 102fb0695727b7f2e8dbb32576a386d9707d999b
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 10 14:50:11 2020 +0100
Version bump.
commit 62b03480d2e67812597b23b62a2e93452bd2766b
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 5 19:41:20 2020 +0100
Version bump.
commit d6881982aa3860a40dec36208976ef878cc09473
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 5 18:54:04 2020 +0100
Packaging updates.
commit 472ee3efc4e9258fe55827716f7e978a9a693f03
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 5 17:09:54 2020 +0100
Updated build scripts
commit 2d683f5015932d84d95f4e16309093bd8eebfc5e
Author: Thomas Dreibholz <[email protected]>
Date: Wed Sep 30 17:04:55 2020 +0200
Updated RPM spec file.
commit f7038be55d1c1e8241a280a7a4c00917c45f7fd2
Author: Thomas Dreibholz <[email protected]>
Date: Wed Sep 30 16:55:42 2020 +0200
Updated build scripts
commit 69835997444d37c5da325bf0a879f773f08bc1a9
Author: Thomas Dreibholz <[email protected]>
Date: Thu Sep 10 12:41:21 2020 +0200
Updated build scripts
commit 210a03e14fcb4a64f398142989f1750c9d5f54e5
Author: Thomas Dreibholz <[email protected]>
Date: Thu Sep 10 12:41:11 2020 +0200
Updated packaging configuration.
commit 51ec5436d9899ee2440a0fc8290110f7d2e345dc
Author: Thomas Dreibholz <[email protected]>
Date: Thu Sep 10 12:36:38 2020 +0200
Updated signing key.
commit e8c5db40fea4418da82a15269be3820e145e177a
Author: Thomas Dreibholz <[email protected]>
Date: Fri Sep 4 14:15:28 2020 +0200
Updated build scripts
commit 15da257e5c1bb2983ea9677a0f7862408cac7986
Author: Thomas Dreibholz <[email protected]>
Date: Fri Sep 4 14:11:58 2020 +0200
Updated Travis CI configuration.
commit f75c70bfad83a040e8bf0e61c5ee4ebac5bc2dba
Author: Thomas Dreibholz <[email protected]>
Date: Fri Sep 4 14:09:51 2020 +0200
Updated build scripts
commit 50089871760275e49c14017bd4286eb68351e837
Author: Thomas Dreibholz <[email protected]>
Date: Fri Sep 4 10:14:13 2020 +0200
Fixed URLs.
commit f36edb450466d0c69fe9d93798e6b6d61922456c
Author: Thomas Dreibholz <[email protected]>
Date: Sat Jul 18 15:55:56 2020 +0200
Updated build scripts
commit 376c97e91ef1b09d922397e7f28cf34d2037fb52
Author: Thomas Dreibholz <[email protected]>
Date: Mon May 18 12:59:16 2020 +0200
New release subnetcalc-2.4.16.
commit d8e504f8b0f4a9316eec5045927ce24bd7aa3295
Author: Thomas Dreibholz <[email protected]>
Date: Mon May 18 10:53:27 2020 +0200
Added test.
commit fa3c0de27236d382e246bc7ef4534b9073485b5b
Author: Thomas Dreibholz <[email protected]>
Date: Wed May 6 22:02:24 2020 +0200
Updated build scripts
commit 6ad6ba32d6594ac1d19cc1ee4ac9e6a33daf4f05
Author: Thomas Dreibholz <[email protected]>
Date: Wed May 6 22:02:23 2020 +0200
Updated build scripts
commit ad16c162f7e4b76c72b8cb947287fafddd8c5b5a
Author: Thomas Dreibholz <[email protected]>
Date: Mon Apr 20 10:57:31 2020 +0200
Travis CI configuration update for Fedora.
commit acf0c023c2b362999440c133cf3855eaa35868db
Author: Thomas Dreibholz <[email protected]>
Date: Fri Apr 17 11:30:57 2020 +0200
Updated Travis CI configuration for Ubuntu builds.
commit 724f28e5c81e1e25131dc4e0ed6bc1dc7824e63f
Author: Thomas Dreibholz <[email protected]>
Date: Thu Apr 16 11:42:55 2020 +0200
Updated Travis CI configuration: Ubuntu 19.04 (Disco Dingo) is now obsolete.
commit 0521d3c60b625b06f65b6053972a0d6945b427ad
Author: Thomas Dreibholz <[email protected]>
Date: Tue Apr 14 19:04:43 2020 +0200
Updated build scripts
commit ae49b337a7038b008544c4f2c78166ce0b51cfb3
Author: Thomas Dreibholz <[email protected]>
Date: Thu Mar 26 09:56:53 2020 +0100
Updated build scripts
commit ddf44e71d03417950e79077090724f65b6e832bc
Author: Thomas Dreibholz <[email protected]>
Date: Fri Feb 7 13:27:57 2020 +0100
Updated LSM entry.
commit 53599147e859b314b3012ae4c245ec95c7ed9500
Author: Thomas Dreibholz <[email protected]>
Date: Fri Feb 7 13:21:31 2020 +0100
New release subnetcalc-2.4.15.
commit 131abc5de03afda2b7ec78426b37aa99d54f0ce6
Author: Thomas Dreibholz <[email protected]>
Date: Fri Feb 7 13:18:53 2020 +0100
Updated Debian standards version.
commit 14f3308a0073056a9050431719d36d46bfd68baa
Author: Thomas Dreibholz <[email protected]>
Date: Fri Feb 7 12:52:08 2020 +0100
Updated build scripts
commit 1b1dd96c2f1275ebb1225db634a6412f43a94513