<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/kernel, branch OTP-22.0.2</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Prepare release</title>
<updated>2019-05-10T12:42:47+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2019-05-10T12:42:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=36719f9798f1f7c2de203091582083e8d8e5726b'/>
<id>36719f9798f1f7c2de203091582083e8d8e5726b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'lukas/kernel/inet_db_fix_set_of_non-existing_file/OTP-15806'</title>
<updated>2019-05-07T09:02:05+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2019-05-07T09:02:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=bde9e42ec8c5dee5ba1333d70f87515d8f38e798'/>
<id>bde9e42ec8c5dee5ba1333d70f87515d8f38e798</id>
<content type='text'>
* lukas/kernel/inet_db_fix_set_of_non-existing_file/OTP-15806:
  kernel: Fix setting of non-existing file as inet_db resolv_conf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lukas/kernel/inet_db_fix_set_of_non-existing_file/OTP-15806:
  kernel: Fix setting of non-existing file as inet_db resolv_conf
</pre>
</div>
</content>
</entry>
<entry>
<title>kernel: Fix setting of non-existing file as inet_db resolv_conf</title>
<updated>2019-05-06T09:50:57+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2019-05-06T09:05:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=f92fc026fe6f34bc869a5166a2726f890986929a'/>
<id>f92fc026fe6f34bc869a5166a2726f890986929a</id>
<content type='text'>
This was broken in 7c63a98c28d477.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was broken in 7c63a98c28d477.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2219 from josevalim/jv-auto-host/OTP-15794</title>
<updated>2019-05-06T07:30:40+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2019-05-06T07:30:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=80ac43b4f3194fddf3f6c911cdf2d25125c56903'/>
<id>80ac43b4f3194fddf3f6c911cdf2d25125c56903</id>
<content type='text'>
Add hostname to -remsh if none is given</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add hostname to -remsh if none is given</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'lukas/kernel/double-sname-fix/ERL-912/OTP-15786'</title>
<updated>2019-05-02T07:46:27+00:00</updated>
<author>
<name>Lukas Larsson</name>
<email>lukas@erlang.org</email>
</author>
<published>2019-05-02T07:46:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=067ac828d5cdfb0211f705e11bd5efd864071d1e'/>
<id>067ac828d5cdfb0211f705e11bd5efd864071d1e</id>
<content type='text'>
* lukas/kernel/double-sname-fix/ERL-912/OTP-15786:
  kernel: Multiple -sname or -name would be ignored
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* lukas/kernel/double-sname-fix/ERL-912/OTP-15786:
  kernel: Multiple -sname or -name would be ignored
</pre>
</div>
</content>
</entry>
<entry>
<title>Add hostname to -remsh if none is given</title>
<updated>2019-04-29T15:56:44+00:00</updated>
<author>
<name>José Valim</name>
<email>jose.valim@plataformatec.com.br</email>
</author>
<published>2019-04-29T15:54:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6944df6e540d57f5ddf04e01d44d3aefd9c4720d'/>
<id>6944df6e540d57f5ddf04e01d44d3aefd9c4720d</id>
<content type='text'>
The -name option already computes a default
hostname if none is given. This PR adds the
same behaviour to -remsh. Now we can run:

    erl -name foo -remsh bar
    erl -sname foo -remsh bar

This simplifies deployment scripts as otherwise
they have to compute the hostname by hand or
start an Erlang VM instance only to do so.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The -name option already computes a default
hostname if none is given. This PR adds the
same behaviour to -remsh. Now we can run:

    erl -name foo -remsh bar
    erl -sname foo -remsh bar

This simplifies deployment scripts as otherwise
they have to compute the hostname by hand or
start an Erlang VM instance only to do so.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2191 from elbrujohalcon/elbrujohalcon-gen_tcp-connect-timeout-docs</title>
<updated>2019-04-24T12:48:24+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-04-24T12:48:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c302bd7493179e62ef0c3a5e1f9b19ed895ec5e1'/>
<id>c302bd7493179e62ef0c3a5e1f9b19ed895ec5e1</id>
<content type='text'>
Add a note about timeouts on gen_tcp:connect/3,4</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a note about timeouts on gen_tcp:connect/3,4</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Prepare release"</title>
<updated>2019-04-24T12:29:10+00:00</updated>
<author>
<name>Rickard Green</name>
<email>rickard@erlang.org</email>
</author>
<published>2019-04-24T12:29:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=0f2ddb633ffe97a92584edfbaf95d2dce3961cc8'/>
<id>0f2ddb633ffe97a92584edfbaf95d2dce3961cc8</id>
<content type='text'>
This reverts commit 425889ba69b69a9b6fb14bfbef121d51b78e853a.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 425889ba69b69a9b6fb14bfbef121d51b78e853a.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare release</title>
<updated>2019-04-23T15:38:37+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2019-04-23T15:38:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=425889ba69b69a9b6fb14bfbef121d51b78e853a'/>
<id>425889ba69b69a9b6fb14bfbef121d51b78e853a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'peterdmv/ssl/doc-types-and-specs/OTP-15746'</title>
<updated>2019-04-23T12:46:38+00:00</updated>
<author>
<name>Péter Dimitrov</name>
<email>peterdmv@erlang.org</email>
</author>
<published>2019-04-23T12:46:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=40474905b2814f0a17d04a5cf91b0cb543e76653'/>
<id>40474905b2814f0a17d04a5cf91b0cb543e76653</id>
<content type='text'>
* peterdmv/ssl/doc-types-and-specs/OTP-15746:
  ssl: Add type specs for http_packet()
  ssl: Fix type specs of ssl_internal.hrl
  ssl: Fix type specs of internal handshake functions
  ssl: Fix dialyzer warnings
  eldap: Fix dialyzer warnings
  ssl: Fix missing anchor warning
  public_key: Accept digest types 'sha1' and 'sha'
  inet: Document type inet:stat_option()
  ssl: Changed function specs and ssl.xml
  ssl: Update standards_compliance.xml

OTP-15775
OTP-15776
OTP-15777

Change-Id: Ibe8e8263d6557eaa40cc0681a7ce3fcb373a4120
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* peterdmv/ssl/doc-types-and-specs/OTP-15746:
  ssl: Add type specs for http_packet()
  ssl: Fix type specs of ssl_internal.hrl
  ssl: Fix type specs of internal handshake functions
  ssl: Fix dialyzer warnings
  eldap: Fix dialyzer warnings
  ssl: Fix missing anchor warning
  public_key: Accept digest types 'sha1' and 'sha'
  inet: Document type inet:stat_option()
  ssl: Changed function specs and ssl.xml
  ssl: Update standards_compliance.xml

OTP-15775
OTP-15776
OTP-15777

Change-Id: Ibe8e8263d6557eaa40cc0681a7ce3fcb373a4120
</pre>
</div>
</content>
</entry>
</feed>
