Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-21 | Changes after ssh-1.1.8 | Niclas Eklund | |
2010-04-21 | OTP-8542: Merge from dev-branch. | Micael Karlberg | |
2010-04-21 | New branch for ssh-2.0 and later | Niclas Eklund | |
2010-04-20 | Merge branch 'bg/compiler-fmove-opt' into dev | Erlang/OTP | |
* bg/compiler-fmove-opt: beam_type: Improve coalescing of fmove/2 and move/2 instructions | |||
2010-04-19 | Merge branch 'bg/deprecations' into dev | Erlang/OTP | |
* bg/deprecations: test suites: Remove incidental use of deprecated concat_binary/1 Postpone removal of concat_binary/1 Remove deprecated lists:flat_length/1 OTP-8584 bg/deprecations | |||
2010-04-19 | Prepare for release | Dan Gudmundsson | |
2010-04-19 | OTP-8567 The word 'spec' is no longer reserved. | Hans Bolinder | |
The function erl_scan:reserved_word/1 no longer returns true when given the word spec. This bug was introduced in STDLIB-1.15.3 (R12B-3). | |||
2010-04-19 | .gitignore: Ignore Emakefile for epmd tests | Björn Gustavsson | |
2010-04-19 | beam_type: Improve coalescing of fmove/2 and move/2 instructions | Björn Gustavsson | |
The following instruction sequence: fmove {fr,Fr} {x,TempXreg} move {x,TempXreg} {y,Dest} is rewritten to: fmove {fr,Fr} {y,Dest} (Provided that {x,TempXreg} is killed by the instructions following the sequence.) Generalize the optimization to also handle: fmove {fr,Fr} {x,TempXreg} move {x,TempXreg} {_,Dest} That is, the destination register can be either an X or Y register. | |||
2010-04-17 | Removing usage of undocumented functions | Niclas Eklund | |
2010-04-17 | Reset inet options | Dan Gudmundsson | |
Temporary set the inet options on listen socket before doing accept so that the correct options will be inherited by the accept socket. Reset the options afterwards so that repeated use of listen socket get user set values. | |||
2010-04-16 | Avoid race condition of early handshake messages, when socket is active mode ↵ | Dan Gudmundsson | |
is not false. | |||
2010-04-15 | ** Empty commit message ** | Ingela Anderton Andin | |
2010-04-15 | Tried to minimize sleeping | Ingela Anderton Andin | |
2010-04-15 | Ignore renegotiation reject until we implemented RFC-5746 | Ingela Anderton Andin | |
2010-04-15 | Added more tests and small corrections. | Ingela Anderton Andin | |
2010-04-15 | Merge branch 'ms/pcre-compile-workspace-overrun' into dev | Erlang/OTP | |
* ms/pcre-compile-workspace-overrun: re_SUITE: Add pcre_compile_workspace_overflow/1 MacOS X: Boost default stack size Fix check for compile workspace overflow OTP-8539 ms/pcre-compile-workspace-overrun | |||
2010-04-14 | Removed call to the deprecated module ssh_cm | Niclas Eklund | |
2010-04-14 | Improved tests | Ingela Anderton Andin | |
2010-04-14 | Enhanced error handling | Ingela Anderton Andin | |
2010-04-14 | Update version number | Ingela Anderton Andin | |
2010-04-14 | Fix spec for ets:to_dets/2 | Kostis Sagonas | |
2010-04-14 | Merge branch 'ks/stdlib' into dev | Erlang/OTP | |
* ks/stdlib: erl_parse.yrl: Add missing operator in type declaration stdlib: Add types and specs stdlib: Use fun object instead of {M,F} tuple ets: Cleanup as suggested by tidier OTP-8576 ks/stdlib | |||
2010-04-14 | Merge branch 'jb/inet6-dist' into dev | Erlang/OTP | |
* jb/inet6-dist: Support IPv6 addresses in long host names Fix implementation of IPv6 TCP distribution protocol Fix compilation of epmd with IPv6 enabled OTP-8575 jb/inet6-dist | |||
2010-04-14 | re_SUITE: Add pcre_compile_workspace_overflow/1 | Björn Gustavsson | |
2010-04-14 | MacOS X: Boost default stack size | Björn Gustavsson | |
The default stack size on MacOS X for the SMP emulator is too small to support all uses of pcre. For example, the following expression N = 819, re:compile([lists:duplicate(N, $(), lists:duplicate(N, $))]). will cause a stack overflow. By bisection of different values for the +sss option, I found that 166 is the smallest value that avoids the crash. Round that up to 256 to give a nice, round power of 2 and a resonable safety margin. Use that value as a default stack size on MacOS X only. | |||
2010-04-14 | Fix check for compile workspace overflow | Michael Santos | |
Patch from: http://vcs.pcre.org/viewvc/code/trunk/pcre_compile.c?r1=504&r2=505&view=patch Test case: N = 819, re:compile([lists:duplicate(N, $(), lists:duplicate(N, $))]). Compiling large regular expressions could overflow the workspace buffer. Modify the test to check for a value smaller than the buffer size. | |||
2010-04-13 | We currently do not support fixed DH. Removal of dead code. | Ingela Anderton Andin | |
2010-04-13 | Fixed dialyzer warning | Ingela Anderton Andin | |
2010-04-13 | OTP-8554 Certificate extensions | Ingela Anderton Andin | |
2010-04-13 | OTP-8553 Extended key usage | Ingela Anderton Andin | |
2010-04-13 | ets docs: Correct return type for ets:to_dets/2 | Björn Gustavsson | |
2010-04-13 | Merge branch 'bg/fconv' into dev | Erlang/OTP | |
* bg/fconv: erts: Fix loading of modules with invalid floating point arithmetic | |||
2010-04-13 | Use binaries instead of non-supported lists as argument to ↵ | Dan Gudmundsson | |
crypto:des_cbc_decrypt | |||
2010-04-13 | Support IPv6 addresses in long host names | John-Mark Bell | |
When distributing over IPv4, node@<IPv4-address> (e.g. [email protected]) works correctly. Permit node@<IPv6-address> (e.g. node@::1) when distributing over IPv6. | |||
2010-04-13 | Fixed spelling error | Dan Gudmundsson | |
2010-04-13 | OTP-8517 Renegotiation | Ingela Anderton Andin | |
New ssl now properly handles ssl renegotiation, and initiates a renegotiation if ssl/ltls-sequence numbers comes close to the max value. | |||
2010-04-13 | erl_parse.yrl: Add missing operator in type declaration | Kostis Sagonas | |
2010-04-13 | stdlib: Add types and specs | Kostis Sagonas | |
2010-04-13 | stdlib: Use fun object instead of {M,F} tuple | Kostis Sagonas | |
2010-04-13 | ets: Cleanup as suggested by tidier | Kostis Sagonas | |
2010-04-12 | OTP-8517 Renegotiation | Ingela Anderton Andin | |
New ssl now properly handles ssl renegotiation, and initiates a renegotiation if ssl/ltls-sequence numbers comes close to the max value. | |||
2010-04-09 | Fix renegotiate doc | Ingela Anderton Andin | |
2010-04-09 | Update version number | Ingela Anderton Andin | |
2010-04-09 | Removed more sleeps | Ingela Anderton Andin | |
2010-04-09 | Merge branch 'ta/nif-documentation' into dev | Erlang/OTP | |
* ta/nif-documentation: Fix typos in erl_nif.xml Build erl_nif manpage OTP-8558 ta/nif-documentation | |||
2010-04-09 | Merge branch 'sk/old_heap-unused' into dev | Erlang/OTP | |
* sk/old_heap-unused: system_info(procs): Fix the value for "OldHeap unused" | |||
2010-04-09 | Dialyzer docs: Fix minor typo | Kostis Sagonas | |
2010-04-09 | Removed need of sleep better to synchronize if possible. | Ingela Anderton Andin | |
2010-04-09 | OTP-8562 Closing right parenthesis in macro definitions is mandatory. | Hans Bolinder | |
When defining macros the closing right parenthesis before the dot is now mandatory. |