<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/ssh/doc/src, branch OTP-18.1.1</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>2015-09-21T15:09:23+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2015-09-21T15:09:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6738d356a279835222b951fd213ed4cf9897eb7e'/>
<id>6738d356a279835222b951fd213ed4cf9897eb7e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ssh: document new options in doc/ssh.xml</title>
<updated>2015-08-05T11:59:27+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2015-08-05T11:41:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=25db64119ec6369156129a77330c64753a6706eb'/>
<id>25db64119ec6369156129a77330c64753a6706eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare release</title>
<updated>2015-06-23T08:24:26+00:00</updated>
<author>
<name>Erlang/OTP</name>
<email>otp@erlang.org</email>
</author>
<published>2015-06-23T08:24:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2955ddebc32837b66d9bacb4e925ad0ed0033168'/>
<id>2955ddebc32837b66d9bacb4e925ad0ed0033168</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change license text to APLv2</title>
<updated>2015-06-18T09:31:02+00:00</updated>
<author>
<name>Bruce Yinhe</name>
<email>bruce@erlang.org</email>
</author>
<published>2015-06-18T09:31:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=738c34d4bb8f1a3811acd00af8c6c12107f8315b'/>
<id>738c34d4bb8f1a3811acd00af8c6c12107f8315b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ssh: Modernize type definitions</title>
<updated>2015-06-16T13:54:07+00:00</updated>
<author>
<name>Ingela Anderton Andin</name>
<email>ingela@erlang.org</email>
</author>
<published>2015-06-16T13:54:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=42cc43a5e88ac578249def663f665723ecc53c46'/>
<id>42cc43a5e88ac578249def663f665723ecc53c46</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 'hans/ssh/unknown_msgfun/OTP-12813'</title>
<updated>2015-06-10T11:38:04+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2015-06-10T11:38:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=455ae616947dce6bd6b514226e98b50ef176fd83'/>
<id>455ae616947dce6bd6b514226e98b50ef176fd83</id>
<content type='text'>
* hans/ssh/unknown_msgfun/OTP-12813:
  ssh: Option unexpectedfun for ssh:daemon and ssh:connect
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* hans/ssh/unknown_msgfun/OTP-12813:
  ssh: Option unexpectedfun for ssh:daemon and ssh:connect
</pre>
</div>
</content>
</entry>
<entry>
<title>ssh: Option unexpectedfun for ssh:daemon and ssh:connect</title>
<updated>2015-06-09T14:31:01+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2015-06-09T14:31:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=5ad46d56c097ef17b77ef4532b7eb264e005fde1'/>
<id>5ad46d56c097ef17b77ef4532b7eb264e005fde1</id>
<content type='text'>
This option has a fun as value.  The fun will be called when an
unexpected message arrives.  The fun returns either 'skip' or 'report'
to guide the connection_handler what to do.

One usage is to filter out messages that are not wanted in the error
logger as info reports. An example of such a message is the 'etimedout'
tcp error message that will be received if a connection has keep_alive
and the peer is restarted.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This option has a fun as value.  The fun will be called when an
unexpected message arrives.  The fun returns either 'skip' or 'report'
to guide the connection_handler what to do.

One usage is to filter out messages that are not wanted in the error
logger as info reports. An example of such a message is the 'etimedout'
tcp error message that will be received if a connection has keep_alive
and the peer is restarted.
</pre>
</div>
</content>
</entry>
<entry>
<title>ssh: doc change for keyboard-interaction, pwd-&gt;password</title>
<updated>2015-06-09T13:19:37+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2015-06-09T13:02:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=3cb23ddc6bea946a729630def0f76d06a37ec63d'/>
<id>3cb23ddc6bea946a729630def0f76d06a37ec63d</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 'hans/ssh/missing_doc'</title>
<updated>2015-06-09T11:29:33+00:00</updated>
<author>
<name>Hans Nilsson</name>
<email>hans@erlang.org</email>
</author>
<published>2015-06-09T11:29:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=974042641bcde0b4761bf6f9c8633e36145948fd'/>
<id>974042641bcde0b4761bf6f9c8633e36145948fd</id>
<content type='text'>
* hans/ssh/missing_doc:
  ssh: add missing doc for option auth_method_kb_interactive_data
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* hans/ssh/missing_doc:
  ssh: add missing doc for option auth_method_kb_interactive_data
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'ia/ssh/name-spaces/OTP-12675'</title>
<updated>2015-06-08T14:00:49+00:00</updated>
<author>
<name>Ingela Anderton Andin</name>
<email>ingela@erlang.org</email>
</author>
<published>2015-06-08T14:00:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=798219edd8adf36dbcc02ce9c9de71685da85d64'/>
<id>798219edd8adf36dbcc02ce9c9de71685da85d64</id>
<content type='text'>
* ia/ssh/name-spaces/OTP-12675:
  ssh: Correct Makefile
  ssh: Add profile option
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* ia/ssh/name-spaces/OTP-12675:
  ssh: Correct Makefile
  ssh: Add profile option
</pre>
</div>
</content>
</entry>
</feed>
