This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
1400 lines (739 loc) · 30.6 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
2011-10-31 Philipp Kern <[email protected]>
* NEWS: add CVE numbers
2011-10-30 Philipp Kern <[email protected]>
* configure.ac:
* NEWS: bump version to 1.3.14 and document the changes
2011-10-30 Philipp Kern <[email protected]>
* po/ast.po:
* po/de.po:
* po/en_GB.po:
* po/es.po:
* po/fr.po:
* po/he.po:
* po/it.po:
* po/ko.po:
* po/nb.po:
* po/net6.pot:
* po/nl.po:
* po/pt.po:
* po/pt_BR.po:
* po/ru.po:
* po/sk.po:
* po/sv.po:
* po/uk.po:
* po/zh_CN.po: updated translations from Launchpad
* po/LINGUAS: add ast
2011-10-30 Armin Burgmeier <[email protected]>
* inc/server.hpp: Run custom authentication before checking for the
user name, to prevent unauthorized clients from gathering information
about logged in users (Vasiliy Kulikov).
2011-10-30 Armin Burgmeier <[email protected]>
* inc/server.hpp:
* inc/host.hpp: Choose the lowest possible user ID when a new user
joins instead of increasing the ID counter. This prevents possible
duplicate IDs in the case of an unsigned integer overflow (Vasiliy
Kulikov).
2011-09-28 Vincent Untz <[email protected]>
* src/encrypt.cpp: fix build failure with gnutls 3.0.3 and above
2011-09-05 Vincent Untz <[email protected]>
* inc/encrypt.hpp:
* src/encrypt.cpp: fix build failure with gnutls 3.0
2011-04-14 Philipp Kern <[email protected]>
* configure.ac:
* NEWS: bump version to 1.3.13 and document the changes
2011-04-14 Philipp Kern <[email protected]>
* po/*.po: refreshed from Launchpad
2009-12-23 Philipp Kern <[email protected]>
* configure.ac: add AC_CONFIG_MACRO_DIR for libtoolize
2009-12-23 Philipp Kern <[email protected]>
* NEWS:
* po/LINGUAS:
* po/en_GB.po:
* po/ko.po: new translations from Launchpad: Korean and English
(Great Britain)
2009-12-23 Philipp Kern <[email protected]>
* configure.ac:
* NEWS: bump version to 1.3.12 and document the changes
2009-12-21 Armin Burgmeier <[email protected]>
* src/connection.cpp (on_sock_event): Allow non-blocking sockets by
not closing the connection on EAGAIN. We did that for Windows already,
since Windows requires sockets to be non-blocking when using
WSAEventSelect.
2009-12-07 Philipp Kern <[email protected]>
* configure.ac:
* NEWS: bump version to 1.3.11 and document the changes
2009-10-20 Armin Burgmeier <[email protected]>
* src/connection.cpp (do_handshake): After TLS handshake, make also
sure to call send() as a re-enabling function if we have data to send,
on Windows. This can prevent a lockup after the TLS negotiation.
2009-10-12 Armin Burgmeier <[email protected]>
* po/uk.po: Added Ukrainian translation by Yuri Chornoivan. Bug #479.
* po/LINGUAS: Added uk.
2009-08-24 Philipp Kern <[email protected]>
* configure.ac:
* NEWS: bump version to 1.3.10 and document the changes
2009-08-24 Philipp Kern <[email protected]>
* po/{he,nb,pt_BR,ru,sk,zh_CN}.po: Import Hebrew, Norwegian Bokmal,
Brazilian Portuguese, Russian, Slovak and Simplified Chinese
from Ubuntu Jaunty's translation branch.
2009-08-24 Philipp Kern <[email protected]>
* po/{es,fr,it,pt}.po: Update existing transitions from Ubuntu
Jaunty's translation branch.
2009-06-20 Armin Burgmeier <[email protected]>
* configure.ac: Removed superfluous comma.
2009-06-01 Priit Laes <[email protected]>
* net6.pc.in: Removed @addcflags@ from cflags, as this variable does
no longer exist anymore.
2009-05-31 Priit Laes <[email protected]>
* Makefile.am: Don't use LIBGNUTLS_LIBS and LIBGNUTLS_CFLAGS anymore,
as these variables are no longer set anyway.
* m4/libgnutls.m4: Removed. This file is no longer required.
2009-05-29 Philipp Kern <[email protected]>
* src/socket.cpp: set SO_REUSEADDR on server sockets
2009-05-29 Philipp Kern <[email protected]>
* inc/server.hpp: fix is_open to include serv6_sock
2009-05-22 Armin Burgmeier <[email protected]>
* configure.ac: Locate gnutls via pkg-config, not libgnutls-config
which newer versions no longer have.
2009-01-03 Philipp Kern <[email protected]>
* configure.ac:
* NEWS: bump version to 1.3.9 and document the changes
2009-01-03 Armin Burgmeier <[email protected]>
* inc/server.hpp: Try to open both IPv6 and IPv4 listening sockets.
This is required in case bindtov6only is 1 to also accept IPv4
connections in IPv6 mode.
2008-07-24 Philipp Kern <[email protected]>
* NEWS, configure.ac: bump version to 1.3.8 and document the changes
2008-07-24 Benjamin Herr <[email protected]>
* src/packet.cpp: Preallocate and only copy the string once when
escaping or unescaping it.
2008-07-02 Philipp Kern <[email protected]>
* Makefile.am: fix the file to work with `make distcheck'
2008-07-02 Philipp Kern <[email protected]>
* configure.ac: adjust the bug reporting address to `[email protected]'
2008-07-02 Philipp Kern <[email protected]>
* NEWS, configure.ac: bump version to 1.3.7 and document the changes
2008-07-02 Philipp Kern <[email protected]>
* po/pt.po: add new partial Portuguese translation
* po/{fr,it,sv,nl}.po: updated files exported from Launchpad
2008-07-01 Armin Burgmeier <[email protected]>
* src/select.cpp: Include config.hpp so that HAVE_SYS_SELECT_H is
defined when we need it. Thanks to Hasso Tepper.
2007-12-03 Philipp Kern <[email protected]>
* configure.ac: bump version to 1.3.6
2007-12-01 Philipp Kern <[email protected]>
* New Italian translation, thanks to Sergio Zanchetta.
* Translation import from Rosetta.
2007-07-22 Philipp Kern <[email protected]>
* New Swedish translation by Daniel Nylander [fixes #280]
2007-06-15 Philipp Kern <[email protected]>
* NEWS, configure.ac: bump version to 1.3.5 and document the
changes
2007-05-21 Benjamin Herr <[email protected]>
* inc/server.hpp: fixed user object access after deallocation
2007-04-15 Philipp Kern <[email protected]>
* NEWS, configure.ac: bump version to 1.3.4, try to document
the changes
2007-04-15 Philipp Kern <[email protected]>
* configure.in: renamed to configure.ac
2007-04-07 Armin Burgmeier <[email protected]>
* src/address.cpp: Fix self-assignment check in net6::ipv4_address and
net6::ipv6_address. Fixes #254.
2007-04-02 Philipp Kern <[email protected]>
* inc/client.hpp: reset connection pointer if an error occurs
2007-02-25 Armin Burgmeier <[email protected]>
* inc/server.hpp: Added overload instead of default argument for ipv6
parameter in reopen(). Older gcc versions seem not to support member
variables as default arguments. I don't even know whether that's
allowed by the C++ standard or not.
2007-02-25 Philipp Kern <[email protected]>
* NEWS, configure.in: Version bump to 1.3.3
* README: Added GNUTLS to the dependency list
2007-02-25 Philipp Kern <[email protected]>
Reformatted ChangeLog to ease new entries which are not
autogenerated anymore.
2007-02-24 Philipp Kern <[email protected]>
Remove a darcs relict.
2006-12-31 Armin Burgmeier <[email protected]>
Preserve API compatibility for the IPv6 fix
2006-11-08 Armin Burgmeier <[email protected]>
Made ipv6 a parameter to reopen
2006-11-04 Armin Burgmeier <[email protected]>
Reorder netinet/in.h inclusion in address.hpp
2006-11-04 Armin Burgmeier <[email protected]>
libtool stuff
2006-11-04 Armin Burgmeier <[email protected]>
Do not propagate any errors to the selector [fixes #215]
2006-09-24 Philipp Kern <[email protected]>
Updated ChangeLog for release
2006-09-24 Philipp Kern <[email protected]>
Updated build system supplementaries
2006-09-15 Philipp Kern <[email protected]>
Use CXXFLAGS instead of CFLAGS in gnutls detection
2006-09-05 Philipp Kern <[email protected]>
MingW compilation fix
2006-08-25 Philipp Kern <[email protected]>
Updated ChangeLog for release
2006-08-25 Philipp Kern <[email protected]>
Bump version to 1.3.1
2006-08-21 Philipp Kern <[email protected]>
Drop Fortran checks for a massive speed-up
2006-08-17 Philipp Kern <[email protected]>
Updated ChangeLog for release
2006-08-17 Philipp Kern <[email protected]>
Fixed the po/ Makefile
2006-08-17 Philipp Kern <[email protected]>
Translation roundup
2006-08-16 Philipp Kern <[email protected]>
Bumped version to 1.3.0rc3
2006-08-16 Philipp Kern <[email protected]>
Updated NEWS
2006-08-15 Armin Burgmeier <[email protected]>
Listen only on IPv6 when IPv6 is enabled
2006-08-15 Philipp Kern <[email protected]>
Fix the ADDRCONFIG check by using the C++ compiler for it
2006-08-15 Philipp Kern <[email protected]>
Check for AI_ADDRCONFIG (used for IPv6 availability check)
2006-08-07 Philipp Kern <[email protected]>
Minor tweak to the boring controlfile
2006-08-07 Armin Burgmeier <[email protected]>
gettext m4 macros
2006-08-03 Armin Burgmeier <[email protected]>
Updated po/Makefile.in.in to gettext 0.15
2006-08-03 Armin Burgmeier <[email protected]>
Added virtual empty destructors to serialise contexts to avoid
compiler warnings
2006-05-14 Philipp Kern <[email protected]>
Updated ChangeLog for release
2006-05-14 Philipp Kern <[email protected]>
Bump version to 1.3.0rc2
2006-05-08 Armin Burgmeier <[email protected]>
Include <unistd.h> for close() in socket.cpp
2006-05-08 Armin Burgmeier <[email protected]>
Splitted up assignment operators in enum_ops into two lines
2006-05-06 Philipp Kern <[email protected]>
Check for substrings in Win32 detection
2006-04-24 Armin Burgmeier <[email protected]>
Build fix for older GNUTLS versions [fixes #153]
2006-04-18 Philipp Kern <[email protected]>
Check for SO_NOSIGPIPE through Autoconf [fixes #135]
2006-03-31 Armin Burgmeier <[email protected]>
Fixed a problem that caused WIN32 programs to abort when using
encryption
2006-03-30 Armin Burgmeier <[email protected]>
Include <limits> in selector for numeric_limits
2006-03-30 Philipp Kern <[email protected]>
Updated ChangeLog for release
2006-03-30 Philipp Kern <[email protected]>
Updated NEWS once again
2006-03-30 Philipp Kern <[email protected]>
Set version to 1.3.0rc1
2006-03-30 Armin Burgmeier <[email protected]>
Create dh params only once in server, used in each connection
2006-03-30 Armin Burgmeier <[email protected]>
Separate encryption stuff from socket stuff
2006-03-29 Armin Burgmeier <[email protected]>
Provide bad_packet exception class
2006-03-28 Armin Burgmeier <[email protected]>
Splitted context up into context_to and context_from
2006-03-28 Armin Burgmeier <[email protected]>
Overload send in basic_host to avoid warnings about hidden
virtual methods
2006-03-27 Armin Burgmeier <[email protected]>
connection_base::set_enable_keepalives toggled state instead of
setting it
2006-03-27 Armin Burgmeier <[email protected]>
Added keepalives in connection, IO_TIMEOUT for selector
2006-03-27 Armin Burgmeier <[email protected]>
Made files in test/ compile again, added timeout test
2006-03-27 Armin Burgmeier <[email protected]>
Its config.hpp.................
2006-03-27 Armin Burgmeier <[email protected]>
Include config.h in socket.cpp to get HAVE_MSG_NOSIGNAL
2006-03-25 Armin Burgmeier <[email protected]>
#if should be #ifdef
2006-03-25 Philipp Kern <[email protected]>
Check MSG_NOSIGNAL's presence via autoconf
2006-03-25 Armin Burgmeier <[email protected]>
Only send encryption info for logged in users
2006-03-25 Philipp Kern <[email protected]>
Make really, really sure that LIBGNUTLS_LIBS is added to the
linker command
2006-03-25 Armin Burgmeier <[email protected]>
Win32 build fix
2006-03-25 Philipp Kern <[email protected]>
Use net6-1.3 for pkgconfig instead of net6-1.2
2006-03-25 Philipp Kern <[email protected]>
Preliminary NEWS for 1.3.0
2006-03-25 Philipp Kern <[email protected]>
Translation roundup: Update the template
2006-03-24 Armin Burgmeier <[email protected]>
Allow tcp_sockets with unix domain addresses
2006-03-24 Armin Burgmeier <[email protected]>
Added send_event to connection
2006-03-24 Philipp Kern <[email protected]>
Bump API version
2006-03-24 Armin Burgmeier <[email protected]>
Removed debuglog on unknown GnuTLS error
2006-03-22 Philipp Kern <[email protected]>
Implement stubs for non-NLS systems
2006-03-22 Armin Burgmeier <[email protected]>
Use MSG_NOSIGNAL for nonencrypted sockets, too
2006-03-22 Philipp Kern <[email protected]>
Compile fix for Mac OS X; NOSIGPIPE is not yet set on *BSD
2006-03-22 Armin Burgmeier <[email protected]>
Avoid sending TLS client hello directly after encryption_ok
2006-03-20 Armin Burgmeier <[email protected]>
Send messages with MSG_NOSIGNAL to prevent SIGPIPE to be sent
to the process
2006-03-20 Armin Burgmeier <[email protected]>
Restored signal_encrypted in client for encryptions before login
2006-03-19 Armin Burgmeier <[email protected]>
Minor corrections
2006-03-20 Armin Burgmeier <[email protected]>
Close all client connections before closing server
2006-03-19 Armin Burgmeier <[email protected]>
Allow side selection in encryption initiation
2006-03-18 Philipp Kern <[email protected]>
Removed a superfluous word
2006-03-13 Philipp Kern <[email protected]>
Fix the GNUTLS build for unusual paths
2006-03-13 Philipp Kern <[email protected]>
Fix misplaced NLS conditional
2006-03-16 Armin Burgmeier <[email protected]>
Fixes to make GnuTLS work on WIN32
2006-03-14 Armin Burgmeier <[email protected]>
Some fixes to compile net6 against older gnutls [Ben Martin]
2006-03-10 Armin Burgmeier <[email protected]>
Propagate encryption state to other clients
2006-03-03 Armin Burgmeier <[email protected]>
Win32 build fixes
2006-03-01 Armin Burgmeier <[email protected]>
Added basic_client::is_logged_in
2006-02-27 Armin Burgmeier <[email protected]>
This fixes a crash when the connection has been deleted in
the io signal handler and data was remaining in the GnuTLS cache.
2006-02-26 Armin Burgmeier <[email protected]>
Removed debuglogs
2006-02-26 Armin Burgmeier <[email protected]>
Process data cached in GnuTLS' internal buffer
2006-02-25 Armin Burgmeier <[email protected]>
Close connection on some GnuTLS error codes [fixes #125]
2006-02-25 Armin Burgmeier <[email protected]>
Some TLS code cleanup
2006-02-24 Armin Burgmeier <[email protected]>
Made io_impl template work
2006-02-23 Armin Burgmeier <[email protected]>
Closed connection state
2006-02-23 Philipp Kern <[email protected]>
Enable source skipping in Doxygen (DOXYGEN_SHOULD_SKIP_THIS)
2006-02-20 Armin Burgmeier <[email protected]>
Working TLS encryption, still needs some cleanup
2006-02-18 Armin Burgmeier <[email protected]>
Added GnuTLS error handling, gave selector to connection
2006-02-15 Philipp Kern <[email protected]>
Added get/set to selector, removed add/remove/check
2006-02-14 Philipp Kern <[email protected]>
Exported some encryption stuff over client; misc fixes
2006-02-13 Philipp Kern <[email protected]>
Added check for GNUTLS
2006-02-13 Philipp Kern <[email protected]>
Bump version to 1.3.0
2006-02-13 Armin Burgmeier <[email protected]>
TLS handshake implementation (untested)
2006-02-10 Armin Burgmeier <[email protected]>
Initial GNUTLS-encrypted socket
2006-01-28 Armin Burgmeier <[email protected]>
Workarounded inet_ntop for AF_INET6 on Win32 using WSAAdressToString
2006-01-26 Armin Burgmeier <[email protected]>
Sockets are no more reference-counted
2006-01-26 Armin Burgmeier <[email protected]>
Some autostuff...
2006-01-26 Armin Burgmeier <[email protected]>
Avoids compiler warnings
2006-01-21 Trac <[email protected]>
TODO updated
2005-12-08 Philipp Kern <[email protected]>
Update NEWS for 1.2.2
2005-12-08 Philipp Kern <[email protected]>
Update version number to 1.2.2
2005-12-08 Philipp Kern <[email protected]>
Translation roundup to get up-to-date files
2005-12-08 Philipp Kern <[email protected]>
Translation roundup
2005-11-27 Trac <[email protected]>
TODO updated
2005-11-25 Trac <[email protected]>
TODO updated
2005-11-24 Philipp Kern <[email protected]>
Translation roundup
2005-11-24 Philipp Kern <[email protected]>
Updated NEWS
2005-11-24 Philipp Kern <[email protected]>
Update version number to 1.2.1
2005-11-20 Armin Burgmeier <[email protected]>
Do not call WSAGetLastError() twice in net6::error constructor
2005-11-20 Armin Burgmeier <[email protected]>
Nullterminate address names on WIN32
2005-11-17 Armin Burgmeier <[email protected]>
Link against libintl on windows
2005-11-17 Armin Burgmeier <[email protected]>
Added gettext_package files
2005-11-17 Armin Burgmeier <[email protected]>
gettext_package class for gettext usage in header files and
Win32 support
2005-11-17 Trac <[email protected]>
TODO updated
2005-11-13 Philipp Kern <[email protected]>
Updated NEWS
2005-11-05 Philipp Kern <[email protected]>
Added complete Swedish translation, thanks Daniel Nylander!
2005-10-09 Armin Burgmeier <[email protected]>
Removed possibility to set ID using login_event
2005-10-07 Armin Burgmeier <[email protected]>
Unescape parameters received via the net
2005-10-07 Armin Burgmeier <[email protected]>
Return *this in net6::packet::operator<<
2005-10-07 Armin Burgmeier <[email protected]>
Specialised context for string data
2005-10-07 Armin Burgmeier <[email protected]>
Throw error if socket could not be created
2005-10-07 Armin Burgmeier <[email protected]>
Redesigned type concept with thread safety in mind
2005-10-05 Philipp Kern <[email protected]>
Comment fixes
2005-04-15 Armin Burgmeier <[email protected]>
Some documentation fixes
2005-10-04 Armin Burgmeier <[email protected]>
ltmain stuff
2005-09-22 Philipp Kern <[email protected]>
Added contributors
2005-09-19 Armin Burgmeier <[email protected]>
Store pointer auf user into map
2005-09-19 Armin Burgmeier <[email protected]>
re-insert user to map if ID changed after login_event
2005-09-19 Armin Burgmeier <[email protected]>
Remove not logged in clients from user list when disconnecting
2005-09-15 Armin Burgmeier <[email protected]>
Removed __FUNCTION__ macro from inet_ntop wrapper
2005-09-15 Michael Walter <[email protected]>
Moved Win32 inet_ntop replacement to from config.hpp to address.cpp.
2005-09-15 Michael Walter <[email protected]>
Added missing ws2_32.lib dependency to .vcproj file.
2005-09-15 Michael Walter <[email protected]>
Added MSVC8 project feat. compilation work-arounds (fake
config.hpp with inet_ntop, dummy inttypes.h).
2005-09-15 Michael Walter <[email protected]>
MSVC8 dislikes "try/catch function body".
2005-09-15 Michael Walter <[email protected]>
Added work-around for EAI_NODATA == EAI_NONAME (recent Platform
SDKs).
2005-09-15 Michael Walter <[email protected]>
Added missing #include of <algorithm> (required for std::find,
std::remove on MSVC8).
2005-09-15 Michael Walter <[email protected]>
Fixed typo involving potential instantion of abstract class.
2005-09-15 Armin Burgmeier <[email protected]>
Emit close signal after having called disconnect in client
2005-09-15 Armin Burgmeier <[email protected]>
Use inet_ntop to convert an address to its string representation
2005-09-15 Philipp Kern <[email protected]>
Added more information to the 1.2.0 NEWS item
2005-09-14 Armin Burgmeier <[email protected]>
Fixed false positive of assertion when assigning new client id
via login_event
2005-09-14 Armin Burgmeier <[email protected]>
Fixed two wrongly formed assertions
2005-09-14 Armin Burgmeier <[email protected]>
client_part is not emitted for non-logged in users
2005-09-14 Armin Burgmeier <[email protected]>
Some const fixes
2005-09-12 Armin Burgmeier <[email protected]>
net6::basic_client::send is const
2005-09-11 Armin Burgmeier <[email protected]>
libtool stuff
2005-09-07 Armin Burgmeier <[email protected]>
connection uses exceptions instead of asserts
2005-09-07 Armin Burgmeier <[email protected]>
non_copyable throws exception when copying
2005-09-07 Armin Burgmeier <[email protected]>
Virtual inheritance for host and client
2005-09-07 Philipp Kern <[email protected]>
Install the correct pkgconfig file
2005-09-07 Armin Burgmeier <[email protected]>
protocol mismatch error shows packet command
2005-09-07 Armin Burgmeier <[email protected]>
Added bad_value exception for packet reception handlers
2005-09-07 Armin Burgmeier <[email protected]>
Added missing base class source files
2005-09-07 Philipp Kern <[email protected]>
Export new API
2005-09-06 Armin Burgmeier <[email protected]>
Renamed net6::peer to net6::user, base class for client and
server, templatized selector usage
2005-07-25 Armin Burgmeier <[email protected]>
More preallocation
2005-09-04 Philipp Kern <[email protected]>
FreeBSD build fixes, thanks to Ben Laurie
2005-08-25 Armin Burgmeier <[email protected]>
Made net6::client reusable
2005-08-25 Armin Burgmeier <[email protected]>
Own type for boolean parameter allowing to type as<bool>
2005-08-15 Philipp Kern <[email protected]>
Properly aligned error types
2005-08-05 Philipp Kern <[email protected]>
Preliminary addition of a boolean type, thanks to Ben Levitt
2005-07-29 Philipp Kern <[email protected]>
Updated ChangeLog for release
2005-07-28 Philipp Kern <[email protected]>
Added missing string to German translation
2005-07-27 Armin Burgmeier <[email protected]>
host inherits virtually from server
2005-07-25 Trac <[email protected]>
TODO updated
2005-07-24 Philipp Kern <[email protected]>
Opened new 1.2 tree
2005-07-24 Philipp Kern <[email protected]>
This release is both API- and ABI-incompatible to the 1.0.x series
2005-07-23 Philipp Kern <[email protected]>
Minor addition to the release notes
2005-07-21 Armin Burgmeier <[email protected]>
Changes by libtool
2005-07-21 Armin Burgmeier <[email protected]>
Added default_accumulator in Makefile.am
2005-07-21 Armin Burgmeier <[email protected]>
Fixed buffer overflow when sending much data with a packet
2005-07-21 Armin Burgmeier <[email protected]>
Added default_accumulator template
2005-07-21 Armin Burgmeier <[email protected]>
Fixed possible SEGV with custom parameter types
2005-07-20 Armin Burgmeier <[email protected]>
Support float type as packet parameter
2005-07-19 Armin Burgmeier <[email protected]>
long packet parameters wrapping to int
2005-07-18 Philipp Kern <[email protected]>
Increase the maximum error code
2005-06-30 Philipp Kern <[email protected]>
Fixed silly typo in socket::operator!=
2005-06-24 Philipp Kern <[email protected]>
Shuffle gettext Makefile to get built correctly
2005-06-24 Philipp Kern <[email protected]>
Bumped SONAME as net6 1.1.0 is ABI-incompatible to 1.0.0
2005-06-23 Armin Burgmeier <[email protected]>
Removed debug log
2005-06-19 Philipp Kern <[email protected]>
Updated de.po's header
2005-06-19 Trac <[email protected]>
TODO updated
2005-06-18 Philipp Kern <[email protected]>
Fixed version number in pkg-config spec
2005-06-18 Philipp Kern <[email protected]>
Updated NEWS with 1.1.0 information
2005-06-17 Trac <[email protected]>
TODO updated
2005-06-16 Philipp Kern <[email protected]>
Un'fuzzy'ed the German translation
2005-06-16 Armin Burgmeier <[email protected]>