<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pysnmp-git.git/docs/source/examples, branch master</title>
<subtitle>github.com: etingof/pysnmp.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/'/>
<entry>
<title>Add SNMP agent with multiple SNMP context example script</title>
<updated>2019-11-12T17:16:08+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2019-11-12T17:09:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=7c30ca3f7e4c327b25d4a27d40a6e99db1b0bb61'/>
<id>7c30ca3f7e4c327b25d4a27d40a6e99db1b0bb61</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add examples on master&amp;localized keys use</title>
<updated>2019-08-13T06:38:26+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2019-08-13T06:30:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=65eafa1f62ed6c6a2def8c79f43743fd78859818'/>
<id>65eafa1f62ed6c6a2def8c79f43743fd78859818</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rework VACM access control function (#287)</title>
<updated>2019-07-29T19:37:34+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2019-07-29T07:57:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=6c7b09ac88be195db176c37ca7a197265ca978d0'/>
<id>6c7b09ac88be195db176c37ca7a197265ca978d0</id>
<content type='text'>
Most important changes include:

* Added subtree match negation support (vacmViewTreeFamilyType)
* Added subtree family mask support (vacmViewTreeFamilyMask)
* Added prefix content name matching support (vacmAccessContextMatch)
* Added key VACM tables caching for better lookup performance
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most important changes include:

* Added subtree match negation support (vacmViewTreeFamilyType)
* Added subtree family mask support (vacmViewTreeFamilyMask)
* Added prefix content name matching support (vacmAccessContextMatch)
* Added key VACM tables caching for better lookup performance
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce asyncio binding to hlapi.v1arch (#244)</title>
<updated>2019-02-22T05:43:56+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2019-02-22T05:43:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=74fcc27b038da72c6aa9e2c08b4dac63175b8b5f'/>
<id>74fcc27b038da72c6aa9e2c08b4dac63175b8b5f</id>
<content type='text'>
The hlapi.v1arch asyncio API is intended to be very similar to
hlapi.v3arch.asyncio from its signature viewpoint, however it
should be faster at the expense of no SNMPv3 support.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The hlapi.v1arch asyncio API is intended to be very similar to
hlapi.v3arch.asyncio from its signature viewpoint, however it
should be faster at the expense of no SNMPv3 support.</pre>
</div>
</content>
</entry>
<entry>
<title>Add `hlapi.v1arch` API (#186)</title>
<updated>2018-08-12T15:22:58+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2018-08-12T15:22:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=ac0b956d006a4b7b32780e852740b56ecd826c7e'/>
<id>ac0b956d006a4b7b32780e852740b56ecd826c7e</id>
<content type='text'>
* Add `hlapi.v1arch` API

Introduce new sub-package `pysnmp.hlapi.v1arch` which
wraps otherwise very detailed packet-level SNMP
messaging into a handful of convenience functions.

As a side effect, the `pysnmp.hlapi.*` sub-packages
moved under `pysnmp.hlapi.v3arch` though `pysnmp.hlapi`
still exposes `pysnmp.hlappi.v3arch.*` symbols to
retain some degree of backward compatibility.

The signature of the hlapi `.sendNotification()` call
has changed to accept `*varBinds` instead of a sequence
of `varBinds`. The rationale is to unify this method
call with similar methods of CommandGenerator.

* Add v1arch docs and reshuffle hlapi docs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add `hlapi.v1arch` API

Introduce new sub-package `pysnmp.hlapi.v1arch` which
wraps otherwise very detailed packet-level SNMP
messaging into a handful of convenience functions.

As a side effect, the `pysnmp.hlapi.*` sub-packages
moved under `pysnmp.hlapi.v3arch` though `pysnmp.hlapi`
still exposes `pysnmp.hlappi.v3arch.*` symbols to
retain some degree of backward compatibility.

The signature of the hlapi `.sendNotification()` call
has changed to accept `*varBinds` instead of a sequence
of `varBinds`. The rationale is to unify this method
call with similar methods of CommandGenerator.

* Add v1arch docs and reshuffle hlapi docs
</pre>
</div>
</content>
</entry>
<entry>
<title>migrated references from SourceForge (#110)</title>
<updated>2017-11-17T10:01:14+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2017-11-17T10:01:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=5f7e55269090edda4379fae86d8511940f151a19'/>
<id>5f7e55269090edda4379fae86d8511940f151a19</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>encode IPv6 requirement into example scripts names (#102)</title>
<updated>2017-11-06T13:32:00+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2017-11-06T13:32:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=9f6230113ecd60c40d9739bf43799f9eac306a32'/>
<id>9f6230113ecd60c40d9739bf43799f9eac306a32</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>documentation typo fix</title>
<updated>2017-10-16T22:52:10+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2017-10-16T22:52:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=a6abfd82662615f5e136194e00072afdea1e1510'/>
<id>a6abfd82662615f5e136194e00072afdea1e1510</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Sphinx theme changed to Alabaster, minor documentation tweaks</title>
<updated>2017-10-06T16:39:51+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2017-10-06T16:31:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=c383f2de5bbdbbd64f880726d7f9a6a55855c82a'/>
<id>c383f2de5bbdbbd64f880726d7f9a6a55855c82a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More twisted examples (#47)</title>
<updated>2017-03-18T12:23:38+00:00</updated>
<author>
<name>Ilya Etingof</name>
<email>etingof@gmail.com</email>
</author>
<published>2017-03-18T12:23:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pysnmp-git.git/commit/?id=708062acdea970883a7c7de465f719451012ad6f'/>
<id>708062acdea970883a7c7de465f719451012ad6f</id>
<content type='text'>
* twisted inline callback example
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* twisted inline callback example
</pre>
</div>
</content>
</entry>
</feed>
