<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/snmp/src/app, branch maint</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Merge branch 'bmk/snmp/20190624/compile_time_info/OTP-15330' into maint</title>
<updated>2019-07-08T12:59:54+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-07-08T12:59:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=0199fc732374d0aab3b30a7153f62b03b3b39680'/>
<id>0199fc732374d0aab3b30a7153f62b03b3b39680</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[snmp] Compile time no longer available</title>
<updated>2019-07-08T12:56:41+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-06-24T12:23:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=b58478b9d3e2433ebb20d9af362f174333631bec'/>
<id>b58478b9d3e2433ebb20d9af362f174333631bec</id>
<content type='text'>
The function 'snmp:print_version_info/0' which prints
various (version) info, attempted to extract the
"compile time" of each module in the snmp app.
This info used to be availabe in the module_info of
each module, but has been removed (a "long" time ago).
This resulted in a pointless "Not Found" beeing printed.
This has now been removed from the into printed.

OTP-15330
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The function 'snmp:print_version_info/0' which prints
various (version) info, attempted to extract the
"compile time" of each module in the snmp app.
This info used to be availabe in the module_info of
each module, but has been removed (a "long" time ago).
This resulted in a pointless "Not Found" beeing printed.
This has now been removed from the into printed.

OTP-15330
</pre>
</div>
</content>
</entry>
<entry>
<title>[snmp|manager] Dialyzer related changes</title>
<updated>2019-06-27T15:50:45+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-06-13T14:12:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=331a5f531326da2d0ac23a1fa40c8a51a749c464'/>
<id>331a5f531326da2d0ac23a1fa40c8a51a749c464</id>
<content type='text'>
Changes to satisfy dialyzer. Including changing the definition
of the snmpm_network_interface behaviour (use the '-callback'
attribute instead of an explicit behaviour_info/1 function).

OTP-15932
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes to satisfy dialyzer. Including changing the definition
of the snmpm_network_interface behaviour (use the '-callback'
attribute instead of an explicit behaviour_info/1 function).

OTP-15932
</pre>
</div>
</content>
</entry>
<entry>
<title>[snmp] Dialyzer fixes</title>
<updated>2019-06-27T15:50:41+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-06-12T07:41:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=2b285f1dddc89ac2b4194c16bdb3cc92a89c9976'/>
<id>2b285f1dddc89ac2b4194c16bdb3cc92a89c9976</id>
<content type='text'>
Make target (for running dialyzer on snmp), os usage
and a minor snmp_log ("future proofing").

OTP-15932
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make target (for running dialyzer on snmp), os usage
and a minor snmp_log ("future proofing").

OTP-15932
</pre>
</div>
</content>
</entry>
<entry>
<title>[snmp] Replaced usage of random with rand</title>
<updated>2019-05-22T16:21:02+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-05-07T12:59:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=3f490bea2e21871f534cdcd49d85314eb35f0164'/>
<id>3f490bea2e21871f534cdcd49d85314eb35f0164</id>
<content type='text'>
Use of the deprecated module random has been replaced
by the module rand.

OTP-15331
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use of the deprecated module random has been replaced
by the module rand.

OTP-15331
</pre>
</div>
</content>
</entry>
<entry>
<title>[snmp] Remove use of the deprecated get_stacktrace function</title>
<updated>2019-05-22T16:20:06+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-05-07T10:47:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=6d955c8377f4df9c215424349050b38b8c7628b4'/>
<id>6d955c8377f4df9c215424349050b38b8c7628b4</id>
<content type='text'>
Removed the use of the deprecated erlang:stacktrace() function.
Instead make use of the 'catch Class:Error:Stacktrace' feature.

OTP-15332
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removed the use of the deprecated erlang:stacktrace() function.
Instead make use of the 'catch Class:Error:Stacktrace' feature.

OTP-15332
</pre>
</div>
</content>
</entry>
<entry>
<title>[snmp|agent] Add the default get-mechanism module snmpa_get</title>
<updated>2019-03-28T16:14:56+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-03-26T10:25:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c842e38a1be4a92f14a309a6ccb66f33b5585088'/>
<id>c842e38a1be4a92f14a309a6ccb66f33b5585088</id>
<content type='text'>
Added the snmpa_get module as the default get-mechanism
for the agent.
This has been done by simply moving the do_get, do_get_next
and do_get_bulk functions from the snmpa_agent module.
Some functions where also moved into the lib module (with
the idea of beeing more generally useful).

OTP-15691
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added the snmpa_get module as the default get-mechanism
for the agent.
This has been done by simply moving the do_get, do_get_next
and do_get_bulk functions from the snmpa_agent module.
Some functions where also moved into the lib module (with
the idea of beeing more generally useful).

OTP-15691
</pre>
</div>
</content>
</entry>
<entry>
<title>[snmp|agent] Add/update/export useful types</title>
<updated>2019-03-28T16:14:56+00:00</updated>
<author>
<name>Micael Karlberg</name>
<email>bmk@erlang.org</email>
</author>
<published>2019-03-21T11:25:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=c733d7360045270a5d61d7b7a577abb88fa7fd66'/>
<id>c733d7360045270a5d61d7b7a577abb88fa7fd66</id>
<content type='text'>
Add/update and export some useful types.

OTP-15691
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add/update and export some useful types.

OTP-15691
</pre>
</div>
</content>
</entry>
<entry>
<title>Update version</title>
<updated>2017-10-16T08:26:18+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2017-10-16T08:22:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=1a4762bf01cd3601ff6d48d7d5f59defb5755033'/>
<id>1a4762bf01cd3601ff6d48d7d5f59defb5755033</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Process augments in pass after definitions</title>
<updated>2017-07-28T12:57:01+00:00</updated>
<author>
<name>Raimo Niskanen</name>
<email>raimo@erlang.org</email>
</author>
<published>2017-07-27T14:38:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=75ecc7bf4fb50a31cd540c04518f262cbaf40a93'/>
<id>75ecc7bf4fb50a31cd540c04518f262cbaf40a93</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
