-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathChangeLog
4845 lines (2936 loc) · 160 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 dd4565ef9f4e41605bda63f135892822beedb656
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 6 12:03:32 2023 +0100
Updated autoconf/automake script.
commit c5fbfec8f60c0417a0d077692c9b033a7d6a9cb3
Author: Thomas Dreibholz <[email protected]>
Date: Wed Dec 6 10:15:32 2023 +0100
Added packaging files into tarball.
commit ae12e36a4e482b9281490f6cba429e7a72151412
Author: Thomas Dreibholz <[email protected]>
Date: Tue Dec 5 16:58:47 2023 +0100
Bugfix: Added { ... } block for "else" statements.
commit 8d59104ea78d2bdf78bc828f63fea271bc05a9fd
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 15 10:53:51 2023 +0100
Packaging clean-ups.
commit 948dbe4327c7c9f0bdd62770d62526b8d2acd289
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 15 09:51:57 2023 +0100
Updated build scripts
commit ef9d4746cddba57a478ce4ffa2e39ed0040c3dc6
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 15 09:33:50 2023 +0100
Updated build scripts
commit 8e5537cc41d900f3ee6fbd91a7ab0724a89f75fd
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 17:50:51 2023 +0100
Workflows update.
commit eed3036266f0020fabf0d2b2e4ebbcb7d1c5677b
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 16:33:35 2023 +0100
Removed obsolete CVS $Id$ tag.
commit 78f1e85a62c8cb402cee53d9a55bbc4610ac7678
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 16:22:36 2023 +0100
Header updates.
commit 448f15bd94ea083236bbd7a4c5baabb9546c74de
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 16:16:27 2023 +0100
Updated build scripts
commit 7d8837f222975404e0af68308cfd526e2feaf779
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 16:16:20 2023 +0100
Updated CI scripts
commit d537b04d6e0d90b63a877684a6bd6c1138c301b7
Author: Thomas Dreibholz <[email protected]>
Date: Sat Nov 11 16:16:17 2023 +0100
Travis CI is dead. Removed obsolete Travis CI scripts and configuration.
commit e2b3043d8049651f33c9dcc64977ae1801420b2a
Author: Thomas Dreibholz <[email protected]>
Date: Sun Jan 22 22:49:02 2023 +1100
New release sctplib-1.0.30.
commit bc648821b36bb1c4cb5f93494d768da8b745fabb
Author: Thomas Dreibholz <[email protected]>
Date: Sat Jan 21 22:03:27 2023 +1100
Updated build scripts
commit 208cbcd59ab7575c00cf74c9839b388385848354
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jan 6 21:38:01 2023 +1100
URL change from UDE to NNTB.
commit 9dc7333629c284c9c40881aec3636f004fe3068d
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jan 6 10:22:13 2023 +1100
Updated CI scripts
commit 8c14ccd913aa9fcdd096019a8a52c2a039656c5e
Author: Thomas Dreibholz <[email protected]>
Date: Fri Jan 6 10:21:46 2023 +1100
Updated build scripts
commit 3938859c5ab085742524da7e7837f07597d4d767
Author: Thomas Dreibholz <[email protected]>
Date: Sun Sep 11 13:06:06 2022 +0200
New release sctplib-1.0.29.
commit d745d0e0ed91ee166760fcffe12a5fe7e167daeb
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 31 11:47:32 2022 +0200
Removed Vcs-* fields from debian/control.
commit 206e4bee3f6e9a94125bb316d6a4d446e48c7fec
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 31 11:19:38 2022 +0200
Updated CI scripts
commit 6fd8ad58b396cc47cb9fa8a20fd5f34a07927373
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 31 11:19:36 2022 +0200
Updated build scripts
commit fbcd78f4dbecfb77bc6643790b1fa59ad153a907
Author: Thomas Dreibholz <[email protected]>
Date: Thu Feb 17 12:38:32 2022 +0100
Updated LSM entry.
commit 5ed3aed724e1084143a2c6c242ed3e887a8030a5
Author: Thomas Dreibholz <[email protected]>
Date: Thu Feb 17 12:25:42 2022 +0100
New release sctplib-1.0.28.
commit e224ac62ed0def7aa572b13ba027bd35e72c8365
Author: Thomas Dreibholz <[email protected]>
Date: Thu Feb 17 11:54:20 2022 +0100
ITP fix.
commit 3a5e5b2fdd9a10715c4749fe33a5c282ffbb60c8
Author: Thomas Dreibholz <[email protected]>
Date: Thu Feb 17 11:31:08 2022 +0100
Version bump.
commit 53b54f082ece5a202a398c368ee210e8946a0c77
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 16 12:56:41 2022 +0100
Updated LSM entry.
commit 31b2e9c0c0fb4916e21a2b9c6fbaa24aebe1fe82
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 16 12:39:29 2022 +0100
New release sctplib-1.0.27.
commit c6c0c0d352c5e1a0c8aeee2a92cfef1db42d884e
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 16 12:22:10 2022 +0100
Updated build scripts
commit 8b05663834afb424a22ec79c43f1faa6d9d500ea
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 30 15:26:41 2021 +0100
Removed filed "Homepage" from debian/upstream/metadata.
commit a33df1b4ef8304d772fcac4d128a65a9f794d0fe
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 21:50:56 2021 +0100
Improved CI workflows.
commit 5865cce228d9529ac8753cb9d8f4067e056d9553
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 21:49:00 2021 +0100
Updated build scripts
commit 87dc237bb21ac452acb9d93225c33042a535d2b1
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 15:53:26 2021 +0100
Added CI workflows.
commit 8881f63159d92a9574c46a2eef468e84788cca46
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 15:53:13 2021 +0100
Updated CI scripts
commit 611de2c34e15bfc661c1266c65a0d5a153d6c5f8
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 15:53:13 2021 +0100
Travis CI is dead. Removed obsolete Travis CI scripts and configuration.
commit 2a70e44bd6a664c9a5765065ce8aff6032e20895
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 26 15:53:13 2021 +0100
Updated build scripts
commit 6eb0bdef7a09a25a0a18754693b3cf25c21a01f3
Author: Thomas Dreibholz <[email protected]>
Date: Mon Nov 8 10:38:03 2021 +0100
Updated build scripts
commit d20bafe662d9a9fe32a30be1fdd3dbcfc630a086
Author: Thomas Dreibholz <[email protected]>
Date: Sun Nov 7 14:29:12 2021 +0100
Updated build script.
commit ddefc830a8ee215e3235c1493a1987b64d52bedf
Author: Thomas Dreibholz <[email protected]>
Date: Sun Nov 7 14:22:52 2021 +0100
Updated build scripts
commit b86cf0697534652f624c0565d0840556db6b0d0d
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 3 18:23:25 2021 +0100
Updated build scripts
commit b1ff9ed44f495fc2b4878909d8dfacdc6b4b932e
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 3 18:23:20 2021 +0100
Updated build scripts
commit 7000ade6f5f7c5e6c0cc8d99966c6e7cb9249997
Author: Thomas Dreibholz <[email protected]>
Date: Tue Oct 19 16:11:57 2021 +0200
Updated build scripts
commit 5380af78732e1661431e0982bc8beeaff03301b6
Author: Thomas Dreibholz <[email protected]>
Date: Mon May 3 21:22:02 2021 +0200
Updated build scripts
commit 4532ea1f0696d01fa295dd9f67ecd88dba7a192f
Author: Thomas Dreibholz <[email protected]>
Date: Sun Mar 7 21:19:46 2021 +0100
Updated Travis CI configuration.
commit 8d6cc1de5a0b14a8908cfaccaf02158817f11a5c
Author: Thomas Dreibholz <[email protected]>
Date: Fri Mar 5 18:52:37 2021 +0100
Updated Travis CI configuration
commit 2787f7f042b1903e5d0411f090323a6bce248a42
Author: Thomas Dreibholz <[email protected]>
Date: Fri Mar 5 16:01:45 2021 +0100
Updated build scripts
commit 221e9d439242654b4c9de8e7f0ced8a9b1f1ef0b
Author: Thomas Dreibholz <[email protected]>
Date: Mon Mar 1 21:20:30 2021 +0100
Updated build scripts
commit 9dc0fdb9d6d58e9a399c14c6015973da4c6e57e0
Author: Thomas Dreibholz <[email protected]>
Date: Mon Mar 1 16:30:36 2021 +0100
Updated build scripts
commit 54fe0cbdd948a7d7e9f073a5e61421d36dbc6c14
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:19:07 2021 +0100
Updated build scripts
commit e177f234ddb9acb6d65f7f0bd3b7689a45dd7c76
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:19:06 2021 +0100
Updated build scripts
commit d64b647376f10ccbae00c5b421fa6348ff597ac7
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:17:37 2021 +0100
Updated build scripts
commit a4b058100b0e201d8990e8d794a5415bb3ba7569
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:17:37 2021 +0100
Updated build scripts
commit 577cb4a6a2666875d23ca7c37edd40ec4f2c2949
Author: Thomas Dreibholz <[email protected]>
Date: Wed Feb 17 15:16:37 2021 +0100
Header updates.
commit 4a6c855279a8c142ab035e11e4b80ec2ac9f1f2f
Author: Thomas Dreibholz <[email protected]>
Date: Sat Jan 30 07:39:59 2021 +0100
Updated Travis CI configuration
commit b608aa19f769712561fed7b26e53de40e51b448d
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 13 19:47:56 2020 +0100
Updated LSM entry.
commit 28c57670c29b35786c0d39b77d00b3119dbd6ac4
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 13 19:00:28 2020 +0100
New release sctplib-1.0.26.
commit 60b53df92be5bc8f37027011e450075376124414
Author: Thomas Dreibholz <[email protected]>
Date: Fri Nov 13 10:24:50 2020 +0100
Updated Travis CI configuration.
commit 26d2370731a24772a5f36d34a97951ef3fd27218
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 11 22:25:51 2020 +0100
Version bump.
commit 3bf1f91d1ae0df15c78c7849f8c8e43f8e210e98
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 11 21:42:01 2020 +0100
Updated build scripts
commit 152db3d19b5c414eb49d2b85ad76ffd09778e1a8
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 11 20:25:27 2020 +0100
Minor update.
commit 94418ee5e6a19589184108bf8588f810d0fb06ca
Author: Thomas Dreibholz <[email protected]>
Date: Wed Nov 11 13:01:17 2020 +0100
Updated build scripts
commit 5444ca09467b3f237fcc7f37d533a96ac65b393d
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 10 14:50:11 2020 +0100
Version bump.
commit 6d5f591fec661d9126255e272bdf42e65a09c2f0
Author: Thomas Dreibholz <[email protected]>
Date: Tue Nov 10 14:48:05 2020 +0100
Updated watch file version.
commit 8e540c3fb271184a98315ec9199e471c694cf38e
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 5 19:41:20 2020 +0100
Version bump.
commit 62fbe3ccc1c9a17a34e5e2981da433a61f0a5d96
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 5 18:54:04 2020 +0100
Packaging updates.
commit 4264e9e95942c065452cbb4e2f938ea18d8ba1fd
Author: Thomas Dreibholz <[email protected]>
Date: Thu Nov 5 17:09:54 2020 +0100
Updated build scripts
commit 3161a61073368cbe155b9f0aab4f14f26c772a04
Author: Thomas Dreibholz <[email protected]>
Date: Wed Sep 30 16:55:42 2020 +0200
Updated build scripts
commit b3fe2787864263bc8c1715123324918f0dd6c7e8
Author: Thomas Dreibholz <[email protected]>
Date: Thu Sep 10 12:41:21 2020 +0200
Updated build scripts
commit 4770f927a75a271315e12f7910147297413d0a78
Author: Thomas Dreibholz <[email protected]>
Date: Thu Sep 10 12:41:11 2020 +0200
Updated packaging configuration.
commit c11ec4a9c18db3370908e57d53e525b4f9d7c908
Author: Thomas Dreibholz <[email protected]>
Date: Thu Sep 10 12:36:38 2020 +0200
Updated signing key.
commit 87932c8060b6431e02760859e1d1105f1951ba81
Author: Thomas Dreibholz <[email protected]>
Date: Fri Sep 4 14:15:28 2020 +0200
Updated build scripts
commit 803ca85445a913b062fae2c5f4d4e464ed379a3e
Author: Thomas Dreibholz <[email protected]>
Date: Fri Sep 4 14:11:58 2020 +0200
Updated Travis CI configuration.
commit f1993718fd16480ed610d9fb12d0a0949219b241
Author: Thomas Dreibholz <[email protected]>
Date: Fri Sep 4 14:09:51 2020 +0200
Updated build scripts
commit 63cdc2f9949d865980e16e68e192484a87b70edb
Author: Thomas Dreibholz <[email protected]>
Date: Sat Jul 18 15:55:56 2020 +0200
Updated build scripts
commit 4aaecbdbe78f383b55ea8b42edd1e61a4a6e74bc
Author: Thomas Dreibholz <[email protected]>
Date: Wed May 6 22:02:24 2020 +0200
Updated build scripts
commit 8c5bc010100c06813c607e041338f31ceb19a477
Author: Thomas Dreibholz <[email protected]>
Date: Wed May 6 22:02:23 2020 +0200
Updated build scripts
commit b7cb24135e5a27202b99943508c93a1651cf1dce
Author: Thomas Dreibholz <[email protected]>
Date: Fri Apr 17 11:30:57 2020 +0200
Updated Travis CI configuration for Ubuntu builds.
commit bb4611923ed3731d710bf187a61b7f458cf045bd
Author: Thomas Dreibholz <[email protected]>
Date: Thu Apr 16 11:42:56 2020 +0200
Updated Travis CI configuration: Ubuntu 19.04 (Disco Dingo) is now obsolete.
commit 776a76a9b6abd86821f08277a01ee3a99e833ed3
Author: Thomas Dreibholz <[email protected]>
Date: Tue Apr 14 19:04:43 2020 +0200
Updated build scripts
commit 49cdc1f3009d5954b412a46f6d60b040e1d05432
Author: Thomas Dreibholz <[email protected]>
Date: Thu Mar 26 10:41:18 2020 +0100
Updated build scripts
commit fcdfd3fef5f24de0e1c1827e2694a6e5dcac5727
Author: Thomas Dreibholz <[email protected]>
Date: Fri Feb 7 13:27:57 2020 +0100
Updated LSM entry.
commit a34c12d441e5c8793f07d93053517ec2c24d097f
Author: Thomas Dreibholz <[email protected]>
Date: Fri Feb 7 13:21:58 2020 +0100
New release sctplib-1.0.25.
commit 0ee2ba848e996f49cbea8485a7557036d83ac22d
Author: Thomas Dreibholz <[email protected]>
Date: Fri Feb 7 13:18:53 2020 +0100
Updated Debian standards version.
commit 37df824e98525bb1558d01a13238f23f3073ce55
Author: Thomas Dreibholz <[email protected]>
Date: Fri Feb 7 12:52:08 2020 +0100
Updated build scripts
commit 0a8d847c1f3da60234387f7b9cbb788d4cdef319
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 14:27:06 2019 +0100
Version bump.
commit 74bf84a0366f99c0f4ebb22e2c2ddc7efd698d47
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 13:37:12 2019 +0100
Updated Travis CI configuration: updated FreeBSD releases.
commit 0ab2cc31245ed5ada4b6a28f0a3c44b2f91d4482
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 13:19:18 2019 +0100
Updated Travis CI configuration: added Ubuntu 20.04.
commit dbf62552aea2512b951b2b6c509ed345c85e1521
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 12:32:12 2019 +0100
Updated Travis CI configuration: removed Fedora 29, added Fedora 31.
commit cdd6b943c430b38dd282da3dbe8c396d90a1cdef
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 12:13:35 2019 +0100
Header updates.
commit 10a2bd144dd0ddcd5a00a41c05c363b5a03f6a19
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 12:09:42 2019 +0100
Updated build scripts
commit d830e5c6ae75f0209e07929c1525bd8536603300
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 12:09:42 2019 +0100
Updated build scripts
commit f7877dffc1ae10150b8cecb968b63e424fa35fc8
Author: Thomas Dreibholz <[email protected]>
Date: Thu Dec 5 12:06:18 2019 +0100
Removed obsolete files.
commit 29651e373294c342946e0163cb2f9089fbe4b25f
Author: Thomas Dreibholz <[email protected]>
Date: Mon Oct 28 14:41:24 2019 +0100
Updated Debian/Ubuntu packaging files.
commit 08377c0b2ec2637ae3180cf520f698fd586519b7
Author: Thomas Dreibholz <[email protected]>
Date: Fri Oct 18 12:26:40 2019 +0200
Updated build scripts
commit 3add1fa16e14c20369b1a9fe31a211387b036b6d
Author: Thomas Dreibholz <[email protected]>
Date: Wed Oct 16 13:52:29 2019 +0200
Updated build scripts
commit 848eefccd32fc90c45b57ea14f14f4f7f9077d67
Author: Thomas Dreibholz <[email protected]>
Date: Fri Sep 13 12:40:33 2019 +0300
Updated build scripts
commit 29db9969d56916bed3dc8b3b1fa786dd43b581d9
Author: Thomas Dreibholz <[email protected]>
Date: Thu Sep 12 12:04:09 2019 +0300
Updated build scripts
commit b355794c71fd1da028509de8436d45c6b23eb5c3
Author: Thomas Dreibholz <[email protected]>
Date: Thu Sep 12 09:47:44 2019 +0300
Updated build scripts
commit 0d2b9a1b1a19623092e276103e3d5ab18c5263c1
Author: Thomas Dreibholz <[email protected]>
Date: Tue Sep 10 15:24:59 2019 +0300
Updated build scripts
commit bf3142eefc1b37671892086080e07e7a4d20f346
Author: Thomas Dreibholz <[email protected]>
Date: Tue Sep 10 15:24:46 2019 +0300
Updated Travis CI configuration.
commit 0781663808446a966b9993af51ed9325825bc7d7
Author: Thomas Dreibholz <[email protected]>
Date: Wed Sep 4 22:58:39 2019 +0200
A test.
commit d3f22622a189dc00e00fa39e72866987b24a657c
Author: Thomas Dreibholz <[email protected]>
Date: Thu Aug 22 10:05:35 2019 +0200
Updated Travis CI configuration
commit 942a1241f970c73e79032b81d6136c6ab049e8e4
Author: Thomas Dreibholz <[email protected]>
Date: Thu Aug 22 09:59:26 2019 +0200
Updated build helper script.
commit 4a8ce2362c2c91679e53969ad90d7b66b327158b
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 21 17:24:18 2019 +0200
A fix.
commit 99cfd6c5c02a53991f14fa0d76a5a5ca0ae0d3a1
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 21 17:20:24 2019 +0200
Replaced shebang "#!/bin/bash" by "#!/usr/bin/env bash" for compatibility with FreeBSD.
commit d120639209d4604f7eb451b5e03a95e65cf8ec8d
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 21 17:19:06 2019 +0200
Minor update.
commit af4f45ff09fbc29c459c09c64a266692d0ab42b3
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 21 17:14:52 2019 +0200
Updated build scripts.
commit d309db32f8c7b4a9d31916ccf0c3812aa6485a49
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 21 17:14:50 2019 +0200
Updated Travis CI configuration.
commit d4a83b20a15f08a102715528f78a75aaac04ec7d
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 21 17:14:21 2019 +0200
Updated CI scripts.
commit 16a1729e5fd4bc028b44a41f5280de5815a8ed6f
Author: Thomas Dreibholz <[email protected]>
Date: Tue Aug 20 08:40:05 2019 +0200
Updated Travis CI configuration.
commit b1875b5a680ea6faa81ad53973a8e8b86afb7034
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 19 21:46:21 2019 +0200
Updated build script.
commit acaa30605f57e8129d897611eab6a2d5c3fdb313
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 19 21:29:17 2019 +0200
Updated FreeBSD port files.
commit fa0585154ff24c822ce7458c1ade1a6257db5c73
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 19 11:34:01 2019 +0200
Updated Travis CI configuration.
commit 73e70a6014d6544e53f61bb68c964be0b5a7977e
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 19 09:48:46 2019 +0200
Updated build scripts.
commit 4e989fcdfb80ed0a14a94c5f77c82eb4ba743f56
Author: Thomas Dreibholz <[email protected]>
Date: Sat Aug 17 23:02:17 2019 +0200
Updated Travis CI configuration.
commit 178dc68df7071f375f17183ae624e83f4edb3a2d
Author: Thomas Dreibholz <[email protected]>
Date: Sat Aug 17 22:59:28 2019 +0200
Updated build scripts.
commit fe167185049e105c910f3b4370379d16c0c56f63
Author: Thomas Dreibholz <[email protected]>
Date: Sat Aug 17 22:59:04 2019 +0200
Updated CI scripts.
commit 95fa64b53a501d0a3a3e7824a026ed5109b4d31f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 14 14:05:26 2019 +0200
Updated LSM entry.
commit e26f9cd18d849c137b7e96b3084b06402abb575f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 14 14:04:54 2019 +0200
Updated FreeBSD distinfo.
commit 736cb6924b6b981c7b63775d0e7c7d1d8e10d4e6
Merge: 88b34cb e3255a1
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 14 14:04:22 2019 +0200
Merge branch 'master' of github.com:dreibh/sctplib
commit 88b34cb86be82506bbf2a951796c03f0545cdeaa
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 14 14:01:51 2019 +0200
New release sctplib-1.0.24.
commit e3255a19d3577e389ad7a07f832521e31eb27eee
Merge: f2da179 5c9971f
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 14 11:45:18 2019 +0200
Merge branch 'master' of https://github.com/dreibh/sctplib
commit f2da179290af7cf16a0cf745a1d7fe7d8c6331b6
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 14 11:27:22 2019 +0200
Removed obsolete helper scripts.
commit 5c9971f7d369a372ea13246988bb12ab1f0e3436
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 14 09:50:31 2019 +0200
Updated CI scripts.
commit ecd4c1c2367ff3d83e3471dfa29af5dc6a3bbc73
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 15:30:32 2019 +0200
Updated build script.
commit a3edfcfd3ef29e115a94e6aecf7dd91626edc554
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 15:29:48 2019 +0200
Removed Ubuntu Cosmic from Travis CI builds, since it is deprecated.
commit 19f551a12feaf19dbe1ba44b6cae79cd3844520f
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:51:48 2019 +0200
Further clean-ups.
commit 92e964ac020699dc7cb0f2da7c6743f66352e6d9
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:40:45 2019 +0200
Ubuntu packaging fix.
commit 26d2fe201a4e7b5fc3a7b1ddbb04b3f5786e30db
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:38:42 2019 +0200
Bugfix: chunkLength has to be "unsigned int", not "unsiged short". Otherwise, it cannot reach MAXIMUM_PAYLOAD_LENGTH (1000000).
commit 9f75c80f5dfce360e0a0a32638cd78a78731f596
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:38:39 2019 +0200
Fixed compiler warning: removed unreachable "exit(0)" after infinite main loop.
commit ba3d2e0ff67376d3315d690822d31494414c7d0f
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:33:38 2019 +0200
Fixed compiler warning: removed unreachable "exit(0)" after infinite main loop.
commit 709f50c7d145d81a3d4195f8b3a04f4e81cce71f
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:32:28 2019 +0200
Fixed compiler warnings: removed unreachable "exit(0)" after infinite main loop.
commit eafa10f1d677c1fd28cc135464e47aee5bca7a4b
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:29:44 2019 +0200
Bugfix: RTT difference has to use signed integers.
commit 3e2044e93b29b9b395157bd4d465df7e017cb5be
Merge: 1865bea 27b62f4
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:25:58 2019 +0200
Merge branch 'master' of github.com:dreibh/sctplib
commit 1865bea762cebac12beb6d4d0b5ec0ced0828ed7
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 12:25:34 2019 +0200
Fixed compiler warning: removed extraneous parentheses.
commit 27b62f443d966784da02f22cf4dec11286935518
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 11:27:50 2019 +0200
Added initial FreeBSD port files.
commit 04240e17cc279649203c98664cf13aaa2ef4e39b
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 12 09:05:37 2019 +0200
Improved Travis CI configuration.
commit 00f04161c5b8dbd1c27dbeff2fb837bfdb609188
Author: Thomas Dreibholz <[email protected]>
Date: Thu Aug 8 14:05:25 2019 +0200
Build script update.
commit a5cc041279e780de1782c0a6d51ffd236bca6413
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 7 18:22:03 2019 +0200
Updated LSM entry.
commit f5fc809fc8798a8e6d95fb563768a63d20297c62
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 7 17:41:09 2019 +0200
New release sctplib-1.0.23.
commit 728b6fe9b4b5e4fafbc05b2a47dcb5267876e2ae
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 7 16:36:20 2019 +0200
Fixed some Lintian warnings.
commit 1f1b2a34ddef8e3e8b9de799ac3ca722f9cee7c5
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 7 10:33:04 2019 +0200
Fixed some inconsistencies in different packaging files.
commit 2c8b24c6f4f3ff2e1b3a60e01265a2524bb4ebe3
Author: Thomas Dreibholz <[email protected]>
Date: Wed Aug 7 10:04:34 2019 +0200
Updated build scripts.
commit 6753a8170e06c44476c954a87399d75e3343465e
Author: Thomas Dreibholz <[email protected]>
Date: Tue Aug 6 16:50:36 2019 +0200
Removed leading / from Ubuntu/Debian install files.
commit b045d664df4fcb316791b57b6abe96ddef91a775
Author: Thomas Dreibholz <[email protected]>
Date: Tue Aug 6 14:32:47 2019 +0200
Reference to RFS #934049.
commit 5a1c6d531dcd93a6b66fad2baf86ec4a173fdac8
Author: Thomas Dreibholz <[email protected]>
Date: Tue Aug 6 11:08:18 2019 +0200
Updated LSM entry.
commit 0cd6391df2f179f30aa49f8e174f14fbcf12fd3f
Author: Thomas Dreibholz <[email protected]>
Date: Tue Aug 6 11:05:16 2019 +0200
New release sctplib-1.0.22.
commit 5e405e3b43e0da55b999c9c28ffb9243d71efa00
Author: Thomas Dreibholz <[email protected]>
Date: Tue Aug 6 00:01:58 2019 +0200
Minor updates.
commit 0a49f946e4998be963382beebc166a37ff4fdc12
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 23:48:58 2019 +0200
Version bump.
commit b034b042dad3d19c8e545e57cf711cc56894a4db
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 23:48:11 2019 +0200
A small fix for the RPM build.
commit c349e75ef6da3649cdc5bf24622995d2b22f6868
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 22:41:53 2019 +0200
Some clean-ups.
commit bd2d4c181b2cf0f88e21e40e27a7ebe036d95915
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 21:58:33 2019 +0200
Packaging improvements.
commit f6470f6050eca9a7e7fa50008385a4f0dc5f59ff
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 21:51:01 2019 +0200
Updated CI scripts.
commit 955728198641ace0471c38cd877eb6744450862a
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 21:01:55 2019 +0200
RPM dependency fix.
commit 436a3e4d82db12d5dab39d05ce03b7bd6e8f77a5
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 19:02:59 2019 +0200
Version bump.
commit 46129c3baf5d6d3b83383fd0446d77222839fc37
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 16:24:44 2019 +0200
An update.
commit de57b204cfa56aa9336a59e452cf343f82752273
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 15:58:07 2019 +0200
Updated RPM spec file.
commit 01b2420f2913fae507af7482e6a456c8bce86378
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 15:53:36 2019 +0200
Some fixes. Using "SCTP over UDP" now!
commit fff796e8d235495ba483df64d966be879e0aa50c
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 15:53:22 2019 +0200
Updated Travis CI configuration.
commit a01d820e3a360fcdcdca7a087e1b76fc02217dc7
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 15:52:41 2019 +0200
Using version provided by Debian.
commit 1ef922762fe6d3185f6b40ef4e2ce629e5065677
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 15:25:33 2019 +0200
Added RPM spec file.
commit 15fcbc1288bd4a04a8729ca95a7bd27dd72074ef
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 15:25:04 2019 +0200
Minor improvements.
commit 10a57ceee9efbc14da4a483b6d107a6e45d2dcf9
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 15:11:17 2019 +0200
Updated Travis CI configuration.
commit 3bde49454d674c50e36c8e1a500fd053a3d71c32
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 13:56:42 2019 +0200
Updated LSM entry.
commit f5ef00c1840113a89763deefd4cc37e7507619ac
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 13:18:39 2019 +0200
Build script updates.
commit 3cc0ee1dc30fb3e02cc1da39e6616ef8c905c690
Author: Thomas Dreibholz <[email protected]>
Date: Mon Aug 5 09:14:33 2019 +0200
Updated Travis CI configuration.
commit 9d9dc18d30ed9b790b56644a35745136bc57fc5c
Author: Thomas Dreibholz <[email protected]>
Date: Thu Aug 1 11:51:17 2019 +0200
A fix.
commit 7db641c352aa1ee5c7260c1b483fbada105e4075