<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/diameter/examples/code, branch OTP-18.1.2</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<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>Let examples override default service options</title>
<updated>2015-03-24T09:57:03+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2015-03-21T18:10:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=949cec3fdcf94310aa567921ac2ea37569beb970'/>
<id>949cec3fdcf94310aa567921ac2ea37569beb970</id>
<content type='text'>
To make them a bit more flexible. Can now do things like this:

  server:start([{'Product-Name', "Bob"}]),
  server:listen({tcp, [{capx_timeout, 2000}]})

Beware that the latter is completely different from this:

  server:listen(tcp, [{capx_timeout, 2000}])
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To make them a bit more flexible. Can now do things like this:

  server:start([{'Product-Name', "Bob"}]),
  server:listen({tcp, [{capx_timeout, 2000}]})

Beware that the latter is completely different from this:

  server:listen(tcp, [{capx_timeout, 2000}])
</pre>
</div>
</content>
</entry>
<entry>
<title>Set {restrict_connections, false} in example server</title>
<updated>2015-03-24T09:57:03+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2015-03-21T17:44:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=d6de8b13a37bc454f6d5a425cdaff6a114b4168c'/>
<id>d6de8b13a37bc454f6d5a425cdaff6a114b4168c</id>
<content type='text'>
Since there's no reason to reject a client that wants to establish
multiple connections, given that diameter can handle it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since there's no reason to reject a client that wants to establish
multiple connections, given that diameter can handle it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Set {string_decode, false} in examples</title>
<updated>2015-03-24T09:57:03+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2015-03-20T21:22:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=23cd65b80b395ad83e69618989ccc0bef13edd0a'/>
<id>23cd65b80b395ad83e69618989ccc0bef13edd0a</id>
<content type='text'>
So as to do what's now recommended in diameter(1), in the grandparent
commit.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So as to do what's now recommended in diameter(1), in the grandparent
commit.
</pre>
</div>
</content>
</entry>
<entry>
<title>Refresh example code</title>
<updated>2015-02-20T01:23:38+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2015-01-25T08:33:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=ce062c0e079c8b43ba0ea74f9cc97dd1e01c6aad'/>
<id>ce062c0e079c8b43ba0ea74f9cc97dd1e01c6aad</id>
<content type='text'>
Which hasn't received any attention for some time. Clean it up, rename
the poorly named peer.erl (it's Diameter *nodes* that are implemented),
and make the it possible to specify arbitrary transport configuration.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Which hasn't received any attention for some time. Clean it up, rename
the poorly named peer.erl (it's Diameter *nodes* that are implemented),
and make the it possible to specify arbitrary transport configuration.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename reconnect_timer to connect_timer in examples and suites</title>
<updated>2014-11-03T11:09:16+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2014-11-03T01:07:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c3b9ebc6cf9619c220b75601b8f02737052901b3'/>
<id>c3b9ebc6cf9619c220b75601b8f02737052901b3</id>
<content type='text'>
The timer was renamed in commit abea7186.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The timer was renamed in commit abea7186.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change answer_errors default from report to discard</title>
<updated>2014-05-27T07:52:21+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2014-05-27T07:45:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=631522514dbd409dbb789103b54bd81c879aff34'/>
<id>631522514dbd409dbb789103b54bd81c879aff34</id>
<content type='text'>
In the same vein as commit 00584303, to avoid logging traffic-related
happenings.

Not that the value in diameter.hrl is just documentation: the value is
set explicitly when diameter:start_service/2 creates diameter_app
records.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the same vein as commit 00584303, to avoid logging traffic-related
happenings.

Not that the value in diameter.hrl is just documentation: the value is
set explicitly when diameter:start_service/2 creates diameter_app
records.
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify example server</title>
<updated>2014-05-26T11:52:06+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2014-05-24T10:13:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2d5e6f4d438db1a480e44c539155e334c11851bc'/>
<id>2d5e6f4d438db1a480e44c539155e334c11851bc</id>
<content type='text'>
In particular, remove the unnecessary list-or-record answer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In particular, remove the unnecessary list-or-record answer.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make example server answer unsupported requests with 3001</title>
<updated>2014-05-26T11:52:05+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2014-05-24T08:56:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=11e3a1b7f21fbb4419043b36ea9cf8c2d53aa7b5'/>
<id>11e3a1b7f21fbb4419043b36ea9cf8c2d53aa7b5</id>
<content type='text'>
As it should. The previous discard (surely) pre-dated being able to
return {answer_message, 3001} from a handle_request callback.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As it should. The previous discard (surely) pre-dated being able to
return {answer_message, 3001} from a handle_request callback.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make example code quiet</title>
<updated>2014-05-26T11:52:05+00:00</updated>
<author>
<name>Anders Svensson</name>
<email>anders@erlang.org</email>
</author>
<published>2014-05-24T05:39:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6ff5384c118a3382823a99ccbb5b82d68c7a8e74'/>
<id>6ff5384c118a3382823a99ccbb5b82d68c7a8e74</id>
<content type='text'>
The output could make it impossible to use the shell. Counters returned
diameter:service_info/2 can be used to check for expected happenings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The output could make it impossible to use the shell. Counters returned
diameter:service_info/2 can be used to check for expected happenings.
</pre>
</div>
</content>
</entry>
</feed>
