forked from ASPLes/nopoll
-
Notifications
You must be signed in to change notification settings - Fork 15
/
ChangeLog
2190 lines (1526 loc) · 84.8 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
------------------------------------------------------------------------
r291 | francis.brosnan.bl.zquez | 2016-07-03 12:37:47 +0200 (dom 03 de jul de 2016) | 4 líneas
nopoll:
* [fix] Updated nopoll_conn_set_bind_interface to support Mac/OSX case
(IP_RECVIF). Fixed wrong if name indication (was adding +1)
------------------------------------------------------------------------
r290 | francis.brosnan.bl.zquez | 2016-07-03 12:25:40 +0200 (dom 03 de jul de 2016) | 3 líneas
nopoll:
* [fix] Updated get-version.py script to also update ChangeLog file
------------------------------------------------------------------------
r289 | francis.brosnan.bl.zquez | 2016-07-03 12:24:26 +0200 (dom 03 de jul de 2016) | 5 líneas
nopoll:
* [fix] Updated default libnopoll.def to include missing declaration.
* [fix] Added default Changelog and NEWS file to avoid annoying error
by autoconf (reported by Félix Faisant).
------------------------------------------------------------------------
r288 | francis.brosnan.bl.zquez | 2016-06-15 19:21:37 +0200 (mié 15 de jun de 2016) | 3 líneas
Merge pull request #3 from cbucht200/master
Added the ability to retrieve the get_url of a nopoll_conn.
------------------------------------------------------------------------
r287 | chris.buchter | 2016-06-15 19:09:42 +0200 (mié 15 de jun de 2016) | 2 líneas
Fixed get_url change to check for NULL conn.
------------------------------------------------------------------------
r286 | chris.buchter | 2016-06-15 18:43:30 +0200 (mié 15 de jun de 2016) | 2 líneas
Added the ability to retrieve the get_url of a nopoll_conn.
------------------------------------------------------------------------
r285 | francis.brosnan.bl.zquez | 2016-06-14 10:05:15 +0200 (mar 14 de jun de 2016) | 7 líneas
nopoll:
* [fix] Updated nopoll.h header to set a default FD_SETSIZE to 4096
so users can have a bigger default values for precompiled binaries.
Added documentation to explain how to change/update this value.
The value is only applied when including project do not define it
before hand.
------------------------------------------------------------------------
r284 | francis.brosnan.bl.zquez | 2016-06-10 17:41:25 +0200 (vie 10 de jun de 2016) | 6 líneas
nopoll:
* [fix] Several fixings applied to allow compiling noPoll on Windows (Windows 7 64 tested).
Renamed parameters using "interface" keyword. Removed conditionally binding interface
code so it is not available on windows (until we have support for it). Added header
definitions for nopoll_config_win32/win64.h to include headers for SSL/TLS includes.
Fixed compilation errors in regression tests.
------------------------------------------------------------------------
r283 | francis.brosnan.bl.zquez | 2016-06-10 11:23:11 +0200 (vie 10 de jun de 2016) | 4 líneas
nopoll:
* [fix] Additional fixings to remove support for SSLv3 when not
available
------------------------------------------------------------------------
r282 | francis.brosnan.bl.zquez | 2016-06-10 11:13:41 +0200 (vie 10 de jun de 2016) | 4 líneas
nopoll:
* [fix] More fixings to ensure noPoll compiles when SSLv3
APIs are not available..
------------------------------------------------------------------------
r281 | francis.brosnan.bl.zquez | 2016-06-10 09:08:12 +0200 (vie 10 de jun de 2016) | 4 líneas
nopoll:
* [fix] Added additional code to disable NOPOLL_METHOD_SSLV3 when it is not
available (reported by Chris Severance)
------------------------------------------------------------------------
r280 | francis.brosnan.bl.zquez | 2016-06-10 00:38:19 +0200 (vie 10 de jun de 2016) | 5 líneas
nopoll:
* [fix] added support to detect SSLv3 methods and remove support for it
in the case they are not present. Added missing pthread_mutexattr_init/destroy
inside regression test.
------------------------------------------------------------------------
r279 | francis.brosnan.bl.zquez | 2016-06-09 21:40:06 +0200 (jue 09 de jun de 2016) | 3 líneas
nopoll:
* [fix] More web updates..
------------------------------------------------------------------------
r278 | francis.brosnan.bl.zquez | 2016-06-09 21:39:18 +0200 (jue 09 de jun de 2016) | 3 líneas
nopoll:
* [fix] Fixed SVN -> github reference on the web..
------------------------------------------------------------------------
r277 | francis.brosnan.bl.zquez | 2016-06-09 21:29:12 +0200 (jue 09 de jun de 2016) | 9 líneas
nopoll:
* [fix] Several to fix dead locks and races when using non-recursive
mutexes through nopoll_thread_headers. Fixed dead lock when connection
close received while using nopoll_loop_wait API (reported by Ondrej
Zaruba). Updated nopoll_conn_ref/unref to fix possible races. Added
reg test (test_36) to reproduce and check fix introduced.
------------------------------------------------------------------------
r276 | francis.brosnan.bl.zquez | 2016-06-09 20:26:04 +0200 (jue 09 de jun de 2016) | 3 líneas
nopoll:
* [fix] More updates..
------------------------------------------------------------------------
r275 | francis.brosnan.bl.zquez | 2016-06-09 20:25:38 +0200 (jue 09 de jun de 2016) | 3 líneas
nopoll:
* [fix] Fixed SVN references at web page..
------------------------------------------------------------------------
r274 | francis.brosnan.bl.zquez | 2016-06-09 17:54:11 +0200 (jue 09 de jun de 2016) | 5 líneas
nopoll:
* [fix] Updated nopoll regression test code to use threading locking
code by default to ensure that all code tested is under threading
support (which at the end covers non threaded code).
------------------------------------------------------------------------
r273 | francis.brosnan.bl.zquez | 2016-06-09 15:46:47 +0200 (jue 09 de jun de 2016) | 4 líneas
nopoll:
* [fix] Updated buildrpm.sh (to create default building directories
if not present)
------------------------------------------------------------------------
r272 | francis.brosnan.bl.zquez | 2016-06-09 15:44:28 +0200 (jue 09 de jun de 2016) | 3 líneas
nopoll:
* [fix] Removing folders..
------------------------------------------------------------------------
r271 | francis.brosnan.bl.zquez | 2016-06-09 14:11:30 +0200 (jue 09 de jun de 2016) | 3 líneas
nopoll:
* [fix] Updated configure.ac to report TLS flexible method detected..
------------------------------------------------------------------------
r270 | francis.brosnan.bl.zquez | 2016-06-09 13:27:27 +0200 (jue 09 de jun de 2016) | 3 líneas
nopoll:
* [fix] More files to have support for building packages for Centos..
------------------------------------------------------------------------
r269 | francis.brosnan.bl.zquez | 2016-06-09 13:24:48 +0200 (jue 09 de jun de 2016) | 3 líneas
nopoll:
* [fix] Adding missing spec for centos build..
------------------------------------------------------------------------
r268 | francis.brosnan.bl.zquez | 2016-06-09 13:02:32 +0200 (jue 09 de jun de 2016) | 9 líneas
nopoll:
* [fix] Several updates to make nopoll compilation process
to detect all SSL/TLS methods available and update headers
so noPoll internal code can react but also API consumers can
also take advantage of these indications. Added support for
TLS1.2 and for TlS flexible configuration (though added
security considerations to it). Updated regression test test_19
to check TLSv1.2 client and server support.
------------------------------------------------------------------------
r266 | francis.brosnan.bl.zquez | 2016-05-23 21:47:50 +0200 (lun 23 de may de 2016) | 3 líneas
nopoll:
* [fix] closing release 0.4.1
------------------------------------------------------------------------
r265 | francis.brosnan.bl.zquez | 2016-05-15 23:03:44 +0200 (dom 15 de may de 2016) | 10 líneas
nopoll:
* [fix] Several updates to detect when __nopoll_conn_get_ssl_context fails
to report a valid SSL_CTX (fixed updated test_19).
* [fix] Updated header read handling to support all cases when a
splitted/broken header is received. Added regression tests test_31,
test_32, test_33, test_34 and test_35 to simulate and support different
scenarios where part of the header is received and then the rest...
------------------------------------------------------------------------
r264 | francis.brosnan.bl.zquez | 2016-05-10 10:06:24 +0200 (mar 10 de may de 2016) | 3 líneas
nopoll:
* [fix] Added initial files to compile jessie..
------------------------------------------------------------------------
r263 | francis.brosnan.bl.zquez | 2016-05-06 11:45:17 +0200 (vie 06 de may de 2016) | 3 líneas
nopoll:
* [fix] Adding support for Ubuntu Xenial 16.0
------------------------------------------------------------------------
r262 | francis.brosnan.bl.zquez | 2016-04-21 10:48:07 +0200 (jue 21 de abr de 2016) | 7 líneas
nopoll:
* [fix] fixed broken connection problem caused by some WebSocket
clients that send headers using different send operations (rather
than one single operation) causing the header to be received splitted.
Added regression test_30 to reproduce the problem and check fix
introduced. Problem reported by Rahul Kale (barco.com)
------------------------------------------------------------------------
r261 | francis.brosnan.bl.zquez | 2016-04-15 18:12:08 +0200 (vie 15 de abr de 2016) | 4 líneas
nopoll:
* [fix] Removing printing buffer received when wrong mime
headers are received..
------------------------------------------------------------------------
r260 | francis.brosnan.bl.zquez | 2016-04-15 17:10:58 +0200 (vie 15 de abr de 2016) | 4 líneas
nopoll:
* [fix] Added additional code to avoid printing unallocated memory
when wrong headers are sent and debug code is enable..
------------------------------------------------------------------------
r259 | francis.brosnan.bl.zquez | 2016-04-11 16:03:27 +0200 (lun 11 de abr de 2016) | 5 líneas
nopoll:
* [fix] Making max ssl retries (for nopoll_conn) to try for 10 seconds
instead of just 1 second (which is too short by default for most of
the servers). This only affects client side code
------------------------------------------------------------------------
r258 | francis.brosnan.bl.zquez | 2016-04-11 15:53:40 +0200 (lun 11 de abr de 2016) | 3 líneas
nopoll:
* [fix] Changed ERROR for WARNING message in nopoll-regression-client.c
------------------------------------------------------------------------
r257 | francis.brosnan.bl.zquez | 2016-04-11 15:16:16 +0200 (lun 11 de abr de 2016) | 3 líneas
Merge pull request #2 from schmidtw/add-arbitrary-http-headers
Adding the ability to send arbitrary HTTP headers to a server. This … (From PR #2 by @schmidtw )
------------------------------------------------------------------------
r256 | weston.schmidt | 2016-04-11 08:41:56 +0200 (lun 11 de abr de 2016) | 2 líneas
Adding the ability to send arbitrary HTTP headers to a server. This doesn't add the ability to process arbitrary headers as a server.
------------------------------------------------------------------------
r255 | francis.brosnan.bl.zquez | 2016-03-22 16:56:26 +0100 (mar 22 de mar de 2016) | 3 líneas
Merge pull request #1 from schmidtw/outbound-interface
Add binding interface option to connection (by Weston Schmidt). Thanks for reporting and providing a patch for this option,
------------------------------------------------------------------------
r254 | weston.schmidt | 2016-03-22 16:29:10 +0100 (mar 22 de mar de 2016) | 2 líneas
Add binding interface option to connection and add nopoll_conn_sock_connect_opts() to not break consumers of nopoll_conn_sock_connect().
------------------------------------------------------------------------
r253 | francis.brosnan.bl.zquez | 2016-02-25 18:08:56 +0100 (jue 25 de feb de 2016) | 3 líneas
nopoll:
* [fix] Updated makefiles to control gcc compiler
for w64 (windows) platform..
------------------------------------------------------------------------
r252 | francis.brosnan.bl.zquez | 2016-02-12 18:36:02 +0100 (vie 12 de feb de 2016) | 3 líneas
nopoll:
* [fix] Updated web references to include notes about using Raspbian..
------------------------------------------------------------------------
r251 | francis.brosnan.bl.zquez | 2016-02-10 10:53:52 +0100 (mié 10 de feb de 2016) | 4 líneas
nopoll:
* [fix] Fixed regression test which shows a false positive error
when used under slow systems like raspberry
------------------------------------------------------------------------
r250 | francis.brosnan.bl.zquez | 2016-01-29 13:30:09 +0100 (vie 29 de ene de 2016) | 6 líneas
nopoll:
* [fix] Updated noPoll' connection API to include an option to skip
Origin header check during connection. API added:
- nopoll_conn_opts_skip_origin_check
------------------------------------------------------------------------
r249 | francis.brosnan.bl.zquez | 2016-01-08 10:03:17 +0100 (vie 08 de ene de 2016) | 3 líneas
nopoll:
* [fix] Added some additional notes to explain freebsd/ directory (README.txt)
------------------------------------------------------------------------
r248 | francis.brosnan.bl.zquez | 2016-01-07 18:47:13 +0100 (jue 07 de ene de 2016) | 3 líneas
nopoll:
* [fix] Fixed warnings at nopoll-regression-client.c (FreeBSD 10 i386)
------------------------------------------------------------------------
r247 | francis.brosnan.bl.zquez | 2015-12-15 17:58:50 +0100 (mar 15 de dic de 2015) | 3 líneas
nopoll:
* [fix] Adding files to support FreeBSD 10 amd..
------------------------------------------------------------------------
r246 | francis.brosnan.bl.zquez | 2015-12-15 17:57:13 +0100 (mar 15 de dic de 2015) | 3 líneas
nopoll:
* [fix] Updated free bsd build scripts to support more archs..
------------------------------------------------------------------------
r245 | francis.brosnan.bl.zquez | 2015-12-14 13:43:26 +0100 (lun 14 de dic de 2015) | 5 líneas
nopoll:
* [fix] Updated documentation to properly reference http://www.aspl.es/nopoll/downloads
instead of code.google.com. Added reference to ./autogen.sh to prepare sources
if SVN/GIT is used.
------------------------------------------------------------------------
r244 | francis.brosnan.bl.zquez | 2015-12-12 10:31:09 +0100 (sáb 12 de dic de 2015) | 3 líneas
nopoll:
* [fix] More notes about nopoll_conn_new (connect timeout..)..
------------------------------------------------------------------------
r243 | francis.brosnan.bl.zquez | 2015-12-12 10:30:15 +0100 (sáb 12 de dic de 2015) | 3 líneas
nopoll:
* [fix] Updated nopoll_conn.c to include more documentation
------------------------------------------------------------------------
r242 | francis.brosnan.bl.zquez | 2015-12-12 09:23:45 +0100 (sáb 12 de dic de 2015) | 8 líneas
nopoll:
* [fix] Moved to the header missing public functions:
- nopoll_conn_connect_timeout
- nopoll_conn_get_connect_timeout
(Reported by Rami Rosenbaum)
------------------------------------------------------------------------
r241 | francis.brosnan.bl.zquez | 2015-12-12 09:12:48 +0100 (sáb 12 de dic de 2015) | 3 líneas
nopoll:
* [fix] Corrected signature at nopoll's manual (reported by Neil Kolban)
------------------------------------------------------------------------
r240 | francis.brosnan.bl.zquez | 2015-11-15 11:10:46 +0100 (dom 15 de nov de 2015) | 4 líneas
nopoll:
* [fix] Making nopoll_conn_send_ping to return nopoll_true/nopoll_false according
to the status..
------------------------------------------------------------------------
r239 | francis.brosnan.bl.zquez | 2015-11-10 20:03:38 +0100 (mar 10 de nov de 2015) | 4 líneas
nopoll:
* [fix] Bug reported by Dmex where pong frames aren't properly configured
(mask option) when sent by clients..
------------------------------------------------------------------------
r238 | francis.brosnan.bl.zquez | 2015-10-13 19:38:59 +0200 (mar 13 de oct de 2015) | 3 líneas
nopoll:
* [fix] Doc updates..
------------------------------------------------------------------------
r237 | francis.brosnan.bl.zquez | 2015-09-03 20:37:06 +0200 (jue 03 de sep de 2015) | 3 líneas
nopoll:
* [fix] Copyright updates..
------------------------------------------------------------------------
r236 | francis.brosnan.bl.zquez | 2015-09-03 20:23:54 +0200 (jue 03 de sep de 2015) | 4 líneas
nopoll:
* [fix] Fixed debian files to include nopoll_conn_opts.h into the
package libnopoll0-dev
------------------------------------------------------------------------
r235 | francis.brosnan.bl.zquez | 2015-08-28 17:27:53 +0200 (vie 28 de ago de 2015) | 3 líneas
nopoll:
* [fix] Closing 0.3.2 release..
------------------------------------------------------------------------
r234 | francis.brosnan.bl.zquez | 2015-08-28 16:39:55 +0200 (vie 28 de ago de 2015) | 3 líneas
nopoll:
* [fix] Minor fixings at nopoll-regression-client.c to correct
Windows64 compilation errors..
------------------------------------------------------------------------
r233 | francis.brosnan.bl.zquez | 2015-08-28 16:03:29 +0200 (vie 28 de ago de 2015) | 3 líneas
nopoll:
* [fix] Adding more files for release 0.3.2
------------------------------------------------------------------------
r232 | francis.brosnan.bl.zquez | 2015-08-28 15:59:52 +0200 (vie 28 de ago de 2015) | 3 líneas
nopoll:
* [fix] Updated VERSION (new release)
------------------------------------------------------------------------
r231 | francis.brosnan.bl.zquez | 2015-08-20 17:41:30 +0200 (jue 20 de ago de 2015) | 4 líneas
nopoll:
* [fix] Adding files for FreeBSD 9 to remove directories with :
------------------------------------------------------------------------
r230 | francis.brosnan.bl.zquez | 2015-08-19 16:41:55 +0200 (mié 19 de ago de 2015) | 4 líneas
nopoll:
* [fix] Fixed warnings reported by clang...gcc didn't notice them :-??
------------------------------------------------------------------------
r229 | francis.brosnan.bl.zquez | 2015-08-18 17:03:24 +0200 (mar 18 de ago de 2015) | 4 líneas
nopoll:
* [fix] Added support to provide FreeBSD packages (for now 9.X releases).
------------------------------------------------------------------------
r228 | francis.brosnan.bl.zquez | 2015-08-16 19:10:42 +0200 (dom 16 de ago de 2015) | 14 líneas
nopoll:
* [new] Updated noPoll conn API to include a new function to allow closing
a connection, sending an error message and an error code along with it:
- nopoll_conn_close_ext
* [fix] Added regression test (test_28) to check connection close frame
with status and reason to check functions added:
- nopoll_conn_get_close_status
- nopoll_conn_get_close_reason
Everything working as expected..
------------------------------------------------------------------------
r227 | francis.brosnan.bl.zquez | 2015-08-15 12:13:59 +0200 (sáb 15 de ago de 2015) | 14 líneas
nopoll:
* [fix] Updated noPOll internal handling to support close frames with
body content so remote peer status and reason are now available to API
consumers. A new couple of functions are now available to these values:
- nopoll_conn_get_close_reason
- nopoll_conn_get_close_status
Still need more work to check and add a regression test..
* [fix] Updated nopoll_conn_wait_util_connection_ready uses nopoll_conn_is_ok()
and the end of the function and the result reported is linked to its results..
------------------------------------------------------------------------
r226 | francis.brosnan.bl.zquez | 2015-08-06 19:13:10 +0200 (jue 06 de ago de 2015) | 13 líneas
nopoll:
* [fix] Fixed FreeBSD support. ENOTCONN wasn't handled on connection. For
some reason socket API is reported ENOTCONN when the should be reporting
EINPROGRESS or EWOULDBLOCK
* [fix] Updated log handler reporting so it is triggering when a user handler
is configured via nopoll_log_set_handler (even in the case log reporting
is disabled).
* [fix] Added new option call --show-only-critical to regression tests client
to show only critical messages.
------------------------------------------------------------------------
r225 | francis.brosnan.bl.zquez | 2015-07-22 13:14:58 +0200 (mié 22 de jul de 2015) | 3 líneas
nopoll:
* [fix] Updated web references to include license programm options..
------------------------------------------------------------------------
r224 | francis.brosnan.bl.zquez | 2015-07-22 12:15:49 +0200 (mié 22 de jul de 2015) | 3 líneas
nopoll:
* [fix] Adding references to license program..
------------------------------------------------------------------------
r223 | francis.brosnan.bl.zquez | 2015-07-22 11:27:39 +0200 (mié 22 de jul de 2015) | 3 líneas
nopoll:
* [fix] Added reference to windriver using noPoll..
------------------------------------------------------------------------
r222 | francis.brosnan.bl.zquez | 2015-07-12 22:31:15 +0200 (dom 12 de jul de 2015) | 4 líneas
nopoll:
* [fix] Updated log reporting using function_name. It's noisy and it doesn't
help very much.
------------------------------------------------------------------------
r221 | francis.brosnan.bl.zquez | 2015-07-08 20:13:54 +0200 (mié 08 de jul de 2015) | 3 líneas
nopoll:
* [fix] Fixing comment..
------------------------------------------------------------------------
r220 | francis.brosnan.bl.zquez | 2015-07-08 19:47:53 +0200 (mié 08 de jul de 2015) | 3 líneas
nopoll:
* [fix] Uploading and closing release 0.3.1
------------------------------------------------------------------------
r219 | francis.brosnan.bl.zquez | 2015-07-08 18:23:39 +0200 (mié 08 de jul de 2015) | 2 líneas
nopoll:
* [fix] Updated nopoll.nsi to remove dependency that is not clear...
------------------------------------------------------------------------
r218 | francis.brosnan.bl.zquez | 2015-07-08 17:59:48 +0200 (mié 08 de jul de 2015) | 3 líneas
nopoll:
* [fix] Adding release files (0.3.1.)..
------------------------------------------------------------------------
r217 | francis.brosnan.bl.zquez | 2015-05-28 15:59:21 +0200 (jue 28 de may de 2015) | 10 líneas
nopoll:
* [fix] General update to allow setting and handling protocol requested
and supported by the client and server. Updated regression test (test_27)
to check all changes introduced. API added:
- nopoll_conn_get_accepted_protocol
- nopoll_conn_get_requested_protocol
- nopoll_conn_set_accepted_protocol
------------------------------------------------------------------------
r216 | francis.brosnan.bl.zquez | 2015-05-28 14:31:19 +0200 (jue 28 de may de 2015) | 5 líneas
nopoll:
* [fix] Fixed support for protocol notified by the server, reported by
Rahul Kale (barco.com). Added regression test (test_27) to check fix
introduced.
------------------------------------------------------------------------
r215 | francis.brosnan.bl.zquez | 2015-05-28 13:58:46 +0200 (jue 28 de may de 2015) | 3 líneas
nopoll:
* [fix] Fixed test_26 test..
------------------------------------------------------------------------
r214 | francis.brosnan.bl.zquez | 2015-05-28 13:55:02 +0200 (jue 28 de may de 2015) | 4 líneas
nopoll:
* [fix] Added regression test to check echo.websocket.org Kaazing
support (test_26). Everything working without any issue.
------------------------------------------------------------------------
r213 | francis.brosnan.bl.zquez | 2015-05-26 17:29:57 +0200 (mar 26 de may de 2015) | 3 líneas
nopoll:
* [fix] Fixed nopoll_conn_opts_new to include (void).
------------------------------------------------------------------------
r212 | francis.brosnan.bl.zquez | 2015-05-19 09:20:35 +0200 (mar 19 de may de 2015) | 3 líneas
nopoll:
* [fix] Fixed nopoll.nsi to include libgcc_s_dw2.1.dll into the installer.
------------------------------------------------------------------------
r211 | francis.brosnan.bl.zquez | 2015-05-19 08:23:07 +0200 (mar 19 de may de 2015) | 4 líneas
nopoll:
* [fix] Fixed bug when setting cookie (it was setting \n\r rather than
\r\n). Reported by Ettore Rizza.
------------------------------------------------------------------------
r210 | francis.brosnan.bl.zquez | 2015-05-07 21:51:24 +0200 (jue 07 de may de 2015) | 3 líneas
nopoll:
* [fix] Closing release 0.2.9
------------------------------------------------------------------------
r209 | francis.brosnan.bl.zquez | 2015-05-07 13:58:35 +0200 (jue 07 de may de 2015) | 3 líneas
nopoll:
* [fix] Skip settting errno to EWOULD after TLS finished under
windows platform.
------------------------------------------------------------------------
r208 | francis.brosnan.bl.zquez | 2015-05-07 13:56:20 +0200 (jue 07 de may de 2015) | 3 líneas
nopoll:
* [fix] Updated version..
------------------------------------------------------------------------
r207 | francis.brosnan.bl.zquez | 2015-05-07 11:53:37 +0200 (jue 07 de may de 2015) | 4 líneas
nopoll:
* [fix] Added additional regress iontest (test_25) to check
cookie attack. Nothing was reported because the test..
------------------------------------------------------------------------
r206 | francis.brosnan.bl.zquez | 2015-05-06 19:05:05 +0200 (mié 06 de may de 2015) | 9 líneas
nopoll:
* [new] Added support to handle and set cookie configured for
every connection. Regression test added to check this (test_24).
API added:
- nopoll_conn_get_cookie
- nopoll_conn_new_opts
- nopoll_conn_opts_set_cookie
------------------------------------------------------------------------
r205 | francis.brosnan.bl.zquez | 2015-04-30 21:40:42 +0200 (jue 30 de abr de 2015) | 7 líneas
nopoll:
* [fix] Added a subtlety to report a EWOULD errno just after
finished TLS handshake to ensure the caller can report NULL
but it is not understood as a connection failure by an upper
level API. Fixes MyQtt WebSocket over TLS WebSocket integration
reported.
------------------------------------------------------------------------
r204 | francis.brosnan.bl.zquez | 2015-04-28 19:09:07 +0200 (mar 28 de abr de 2015) | 3 líneas
nopoll:
* [fix] Added missing header for nopoll_conn_set_on_ready.
------------------------------------------------------------------------
r203 | francis.brosnan.bl.zquez | 2015-04-28 19:03:29 +0200 (mar 28 de abr de 2015) | 7 líneas
nopoll:
* [fix] Updatd noPollConn API to allow setting an onReady handler to get a notification
(mainly for server side) when a connection is ready for I/O because Websocke handshake
has finished. API added:
- nopoll_conn_set_on_ready
------------------------------------------------------------------------
r202 | francis.brosnan.bl.zquez | 2015-04-13 12:29:22 +0200 (lun 13 de abr de 2015) | 3 líneas
nopoll:
* [fix] Updating buildrpm.sh
------------------------------------------------------------------------
r201 | francis.brosnan.bl.zquez | 2015-04-11 20:18:52 +0200 (sáb 11 de abr de 2015) | 4 líneas
nopoll:
* [fix] Updated certificates needed by reg test-21. Added script to
generate certificates used by this test.
------------------------------------------------------------------------
r200 | francis.brosnan.bl.zquez | 2015-04-10 18:08:11 +0200 (vie 10 de abr de 2015) | 3 líneas
nopoll:
* [fix] More updates on Centos packages.
------------------------------------------------------------------------
r199 | francis.brosnan.bl.zquez | 2015-04-08 18:40:44 +0200 (mié 08 de abr de 2015) | 3 líneas
nopoll:
* [fix] Updating build rpm files..
------------------------------------------------------------------------
r198 | francis.brosnan.bl.zquez | 2015-04-07 11:11:19 +0200 (mar 07 de abr de 2015) | 4 líneas
nopoll:
* [fix] Several updates to enable support to build rpm packages
for noPoll.
------------------------------------------------------------------------
r197 | francis.brosnan.bl.zquez | 2015-04-01 19:14:03 +0200 (mié 01 de abr de 2015) | 4 líneas
nopoll:
* [fix] Adding support to create centos packages for noPoll
library.
------------------------------------------------------------------------
r196 | francis.brosnan.bl.zquez | 2015-03-09 12:39:35 +0100 (lun 09 de mar de 2015) | 3 líneas
nopoll:
* [fix] Documentation updates..
------------------------------------------------------------------------
r195 | francis.brosnan.bl.zquez | 2015-03-08 14:04:37 +0100 (dom 08 de mar de 2015) | 5 líneas
nopoll:
* [fix] added explicit references to ssl libraries for
regression test binaries.
------------------------------------------------------------------------
r194 | francis.brosnan.bl.zquez | 2015-03-02 16:13:23 +0100 (lun 02 de mar de 2015) | 3 líneas
nopoll:
* [fix] Updated VERSION file to move it to 0.2.9 rev.
------------------------------------------------------------------------
r193 | francis.brosnan.bl.zquez | 2015-03-02 16:12:21 +0100 (lun 02 de mar de 2015) | 9 líneas
nopoll:
* [fix] Updated nopoll_conn_accept implementation to be implemented
into two reusable functions that can be called depending on the needs.
API update:
- nopoll_conn_accept (accept socket and process WebSocket protocol)
- nopoll_conn_accept_socket (just process WebSocket protocol assuming
socket was previously accepted).
------------------------------------------------------------------------
r192 | francis.brosnan.bl.zquez | 2015-03-02 15:03:31 +0100 (lun 02 de mar de 2015) | 5 líneas
[nopoll]
Modificaciones 2 marzo 2015
------------------------------------------------------------------------
r191 | francis.brosnan.bl.zquez | 2015-02-02 14:55:07 +0100 (lun 02 de feb de 2015) | 3 líneas
nopoll:
* [fix] Adding stacom-software.de references ..
------------------------------------------------------------------------
r190 | francis.brosnan.bl.zquez | 2015-01-27 11:58:46 +0100 (mar 27 de ene de 2015) | 4 líneas
nopoll:
* [fix] Added missing nopoll_conn_opts.h reference from nopoll.nsi
(windows installer builder). Reported by Jorge Olmos.
------------------------------------------------------------------------
r189 | francis.brosnan.bl.zquez | 2014-12-22 16:17:40 +0100 (lun 22 de dic de 2014) | 2 líneas
nopoll:
* [fix] Some changes to compile regression-test on windows7 (64 bits).
------------------------------------------------------------------------
r188 | francis.brosnan.bl.zquez | 2014-12-22 15:56:47 +0100 (lun 22 de dic de 2014) | 2 líneas
nopoll:
* [fix] Fixing some warnings produced by unused variables make nopoll debug is disabled.
------------------------------------------------------------------------
r187 | francis.brosnan.bl.zquez | 2014-12-22 15:35:02 +0100 (lun 22 de dic de 2014) | 3 líneas
nopoll:
* [fix] Closing release 0.2.8..
------------------------------------------------------------------------
r186 | francis.brosnan.bl.zquez | 2014-12-20 11:19:33 +0100 (sáb 20 de dic de 2014) | 5 líneas
nopoll:
* [fix] Added additional documentation on how to use noPoll TLS API to implement
server side peer certificate verification, TLS post check and SSL context creator
handlers.
------------------------------------------------------------------------
r185 | francis.brosnan.bl.zquez | 2014-12-16 14:12:42 +0100 (mar 16 de dic de 2014) | 3 líneas
nopoll:
* [fix] Updated VERSION file..
------------------------------------------------------------------------
r184 | francis.brosnan.bl.zquez | 2014-12-16 13:59:01 +0100 (mar 16 de dic de 2014) | 4 líneas
nopoll:
* [fix] Updated nopoll regression client to provide more information in
cases TLS connection fails.
------------------------------------------------------------------------
r183 | francis.brosnan.bl.zquez | 2014-12-16 13:56:51 +0100 (mar 16 de dic de 2014) | 3 líneas
nopoll:
* [fix] Updated nopoll regression client..
------------------------------------------------------------------------
r182 | francis.brosnan.bl.zquez | 2014-12-16 13:53:03 +0100 (mar 16 de dic de 2014) | 3 líneas
nopoll:
* [fix] Adding some more debug information to nopoll-regrssion-client.c
------------------------------------------------------------------------
r181 | francis.brosnan.bl.zquez | 2014-12-16 13:47:20 +0100 (mar 16 de dic de 2014) | 3 líneas
nopoll:
* [fix] Updated VERSION file.
------------------------------------------------------------------------
r180 | francis.brosnan.bl.zquez | 2014-12-16 13:45:22 +0100 (mar 16 de dic de 2014) | 5 líneas
nopoll:
* [fix] Added connection close just after receiving close frame to ensure
the connection close process is triggered as fast as possible..and also
to ensure it is triggered because some clients do not do it.
------------------------------------------------------------------------
r179 | francis.brosnan.bl.zquez | 2014-12-12 13:26:17 +0100 (vie 12 de dic de 2014) | 3 líneas
nopoll:
* [fix] More updates to clarify nopoll_conn_is_ok usage.
------------------------------------------------------------------------
r178 | francis.brosnan.bl.zquez | 2014-12-12 13:24:19 +0100 (vie 12 de dic de 2014) | 3 líneas
nopoll:
* [fix] Updated nopoll_conn_is_ok documenation to better explain how to use it.
------------------------------------------------------------------------
r177 | francis.brosnan.bl.zquez | 2014-12-08 20:00:07 +0100 (lun 08 de dic de 2014) | 3 líneas
nopoll:
* [fix] Updated nopoll version file..
------------------------------------------------------------------------
r176 | francis.brosnan.bl.zquez | 2014-12-08 19:59:36 +0100 (lun 08 de dic de 2014) | 4 líneas
nopoll:
* [fix] Added test_23 to check connection close notification for TLS connections.
Nothing wrong found. Everything working as expected.
------------------------------------------------------------------------
r175 | francis.brosnan.bl.zquez | 2014-12-08 18:05:26 +0100 (lun 08 de dic de 2014) | 5 líneas
nopoll:
* [fix] Added regression test to check connection close handler triggered
for regular connections and ssl ones. Nothing wrong found. Everything working.
Reg test added: test_22
------------------------------------------------------------------------
r174 | francis.brosnan.bl.zquez | 2014-11-26 21:59:32 +0100 (mié 26 de nov de 2014) | 3 líneas
nopoll:
* [fix] More api updates..
------------------------------------------------------------------------
r173 | francis.brosnan.bl.zquez | 2014-11-26 21:53:45 +0100 (mié 26 de nov de 2014) | 3 líneas
nopoll:
* [fix] Fixed documentation compilation errors..
------------------------------------------------------------------------
r172 | francis.brosnan.bl.zquez | 2014-11-26 21:50:00 +0100 (mié 26 de nov de 2014) | 3 líneas
nopoll:
* [fix] Updating VERSION file..
------------------------------------------------------------------------
r171 | francis.brosnan.bl.zquez | 2014-11-26 21:49:20 +0100 (mié 26 de nov de 2014) | 32 líneas
nopoll:
* [new] General API update to allow support to control ssl peer
verification process. This is now done by the API:
- nopoll_conn_opts_ssl_peer_verify
By default listeners do not verify peer certificate but clients
do.
(added reg test 21 to check this new support)
* [new] Added general API update to support server side client
certificate verification by using previous API and allowing to
also setup CA certificates and chain. API added:
- nopoll_conn_opts_set_ssl_certs
(added reg test 21 to check this new support)
* [fix] General connection options API update to allow handling
references so it can be shared among threads and different
connections. API added:
- nopoll_conn_opts_ref
- nopoll_conn_opts_unref
* [fix] Fixed noPoll ssl module to use provided chain certificate
by the API caller (upps).
* [fix] General engine update to allow listeners to be controlled
by connection options in a particular manner.
------------------------------------------------------------------------
r170 | francis.brosnan.bl.zquez | 2014-11-24 09:30:28 +0100 (lun 24 de nov de 2014) | 3 líneas
nopoll:
* [fix] More updates on client peer SSL veritifcation..
------------------------------------------------------------------------
r169 | francis.brosnan.bl.zquez | 2014-11-19 19:23:03 +0100 (mié 19 de nov de 2014) | 3 líneas
nopoll:
* [fix] Updated client regression test..
------------------------------------------------------------------------
r168 | francis.brosnan.bl.zquez | 2014-11-19 19:22:09 +0100 (mié 19 de nov de 2014) | 7 líneas
nopoll:
* [fix] Adding initial code to implement client side peer certificate
verification (test_21). Added API to get listener associated to the
client:
- nopoll_conn_get_listener.
------------------------------------------------------------------------
r167 | francis.brosnan.bl.zquez | 2014-11-13 16:24:29 +0100 (jue 13 de nov de 2014) | 3 líneas
nopoll:
* [fix] Web updates..
------------------------------------------------------------------------
r166 | francis.brosnan.bl.zquez | 2014-11-11 20:11:42 +0100 (mar 11 de nov de 2014) | 13 líneas
nopoll:
* [new] Several API updates to allow userland to define a set of
functions that can be used to expand and customize the SSL/TLS
configuration by allowing to create the context that is going to
be used by the noPoll engine and also to allow running SSL post checks
with the OpenSSL objects created in those cases. API added:
- noPollSslContextCreator (handler)
- noPollSslPostCheck (handler)
- nopoll_ctx_set_ssl_context_creator
- nopoll_ctx_set_post_ssl_check
------------------------------------------------------------------------
r165 | francis.brosnan.bl.zquez | 2014-11-11 18:09:22 +0100 (mar 11 de nov de 2014) | 3 líneas
nopoll:
* [fix] Closing release 0.2.7
------------------------------------------------------------------------
r164 | francis.brosnan.bl.zquez | 2014-11-11 15:56:06 +0100 (mar 11 de nov de 2014) | 3 líneas
nopoll:
* [fix] Updating version..
------------------------------------------------------------------------
r163 | francis.brosnan.bl.zquez | 2014-11-11 15:54:39 +0100 (mar 11 de nov de 2014) | 5 líneas
nopoll:
* [fix] Applied patch by Emmanuel Puig to fix payload size
handling when using extended payload (len == 127). Also fixes
when to reads ops happens. Thanks for reporting Emmanuel, fine work!
------------------------------------------------------------------------
r162 | francis.brosnan.bl.zquez | 2014-11-10 14:08:33 +0100 (lun 10 de nov de 2014) | 4 líneas
nopoll:
* [fix] Fixed nopoll_conn_log_ssl to avoid buffer overrun when
openssl does not provide the format expected.
------------------------------------------------------------------------
r161 | francis.brosnan.bl.zquez | 2014-11-07 17:12:18 +0100 (vie 07 de nov de 2014) | 3 líneas
nopoll:
* [fix] More debug to mime header parsing..
------------------------------------------------------------------------
r160 | francis.brosnan.bl.zquez | 2014-11-07 17:05:45 +0100 (vie 07 de nov de 2014) | 3 líneas
nopoll:
* [fix] More debug to detect wrong mime handling..
------------------------------------------------------------------------
r159 | francis.brosnan.bl.zquez | 2014-11-07 16:54:32 +0100 (vie 07 de nov de 2014) | 4 líneas
nopoll:
* [fix] Some updates to better report mime parse errors.... and fixed a possible
memory leak at mime handling when error happens.
------------------------------------------------------------------------
r158 | francis.brosnan.bl.zquez | 2014-11-03 10:22:14 +0100 (lun 03 de nov de 2014) | 3 líneas
nopoll:
* [fix] autoconf voodoo updates proposed by Felix Faisant
------------------------------------------------------------------------
r157 | francis.brosnan.bl.zquez | 2014-11-03 09:48:01 +0100 (lun 03 de nov de 2014) | 3 líneas
nopoll:
* [fix] Replaced INCLUDES by AM_CPPFLAGS inside Makefile.am files (proposed by Felix Faisant).
------------------------------------------------------------------------
r156 | francis.brosnan.bl.zquez | 2014-10-31 11:26:51 +0100 (vie 31 de oct de 2014) | 3 líneas
nopoll:
* [fix] Fixed automake option (--Werror -> -Werror). Reported by Félix.
------------------------------------------------------------------------
r155 | francis.brosnan.bl.zquez | 2014-10-09 21:00:16 +0200 (jue 09 de oct de 2014) | 3 líneas
nopoll:
* [fix] Added some additional debug to trace SSL problems..
------------------------------------------------------------------------