-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
136 changed files
with
12,328 additions
and
5,452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
AgentXcpp library LICENSE | ||
Version 1, 17 February 2011 | ||
|
||
Copyright 2011-2012 Tanjeff-Nicolai Moos <[email protected]> | ||
Copyright 2011-2016 Tanjeff-Nicolai Moos <[email protected]> | ||
|
||
AgentXcpp is free software: you can redistribute it and/or modify it under the | ||
terms of the GNU General Public License as published by the Free Software | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
![agentXcpp Logo](artwork/github_logo.png) | ||
|
||
|
||
About agentXcpp | ||
=============== | ||
|
||
What is agentXcpp ? | ||
------------------- | ||
|
||
AgentXcpp is a C++ implementation of the AgentX protocol (RFC 2741). The AgentX | ||
protocol is used to implement SNMP MIBs as subagents, which are separate | ||
processes connecting to a master agent. The master agent in turn provides an | ||
SNMP interface to the outside world. | ||
|
||
You may visit the project's website: [agentxcpp.org](http://agentxcpp.org) | ||
|
||
|
||
Status of the project | ||
--------------------- | ||
|
||
All basic functions are implemented. | ||
|
||
Somewhat advanced features, e.g. GetBulk requests, contexts (used by SNMPv3) | ||
and agent capabilities, are not implemented. Also, TCP is not supported for | ||
agentX connections (only unix domain sockets are), so the library will not work | ||
on windows. Further, index allocating (needed to combine variables from | ||
multiple subagents into a single table) is not available. Currently, the | ||
library is also missing logging capabilities. | ||
|
||
|
||
License | ||
------- | ||
|
||
Copyright 2011-2016 Tanjeff-Nicolai Moos <[email protected]> | ||
|
||
This file is part of the agentXcpp library. | ||
|
||
AgentXcpp is free software: you can redistribute it and/or modify | ||
it under the terms of the AgentXcpp library license, version 1, which | ||
consists of the GNU General Public License and some additional | ||
permissions. | ||
|
||
AgentXcpp is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
See the AgentXcpp library license in the LICENSE file of this package | ||
for more details. | ||
|
||
**IMPORTANT:** The software contained in the `site_scons` directory is | ||
distributed under its own license. See the files there for details. | ||
|
||
|
||
The Documentation | ||
================= | ||
|
||
|
||
There are two types of documentation: The | ||
"[API documentation](http://tanjeff.github.io/agentXcpp/docs/0.3/api/html/index.html)" | ||
and the | ||
"[internals documentation](http://tanjeff.github.io/agentXcpp/docs/0.3/internals/html/index.html)". | ||
|
||
The API documentation describes the AgentXcpp API and is intended for the user | ||
of the library. It contains not only the complete API reference, but also a | ||
tutorial to get started. | ||
|
||
The internals documentation explains all internals of the library, including | ||
descriptions of the used concepts, how the build system is configured and how | ||
releases should be created. Of course, it contains also the reference of the | ||
whole code. | ||
|
||
This section describes how to build the documentation from the source. | ||
|
||
|
||
Building the Documentation | ||
-------------------------- | ||
|
||
### Prerequisites | ||
|
||
To build agentXcpp, the following is needed: | ||
|
||
- Standard build environment (compiler, linker, etc.) | ||
- The QT4 library (devel package, e.g. libqt4-dev on linux systems) | ||
- Doxygen, to build the documentation | ||
- The `dot` tool from the graphviz package, which is used by doxygen to | ||
generate diagrams | ||
- SCons, to control the build process | ||
You can build the documentation using SCons or without SCons. | ||
|
||
### Build Commands | ||
|
||
1. With SCons: | ||
cd into the `doc/` directory and type | ||
|
||
scons | ||
|
||
This builds both documentations (API and internal). | ||
|
||
1. Without SCons: | ||
cd into the `doc/` directory and type | ||
|
||
doxygen api.doxyfile | ||
|
||
respectively | ||
|
||
doxygen internals.doxyfile | ||
|
||
After building, the documentation can be displayed by pointing a web browser to | ||
`doc/api/html/index.html` respectively `doc/internals/html/index.html`. | ||
|
||
|
||
|
||
Directory Structure of this Repository | ||
====================================== | ||
|
||
|
||
This top level directory contains the following elements: | ||
|
||
* __artwork/__ | ||
|
||
Here is the agentXcpp logo, and possibly other artwork. | ||
|
||
* __AUTHORS__ | ||
|
||
Contains the author(s) of the agentXcpp library. | ||
|
||
* __ChangeLog__ | ||
|
||
The Changelog. | ||
|
||
* __create-release.py__ | ||
|
||
A script to create an agentXcpp release. | ||
|
||
* __doc/__ | ||
|
||
This directory contains the documentation. The documentation is created | ||
using Doxygen and most of the content is contained in the source code. The | ||
doc/ directory contains the doxygen configs, some additional documentation | ||
files (*.dox) and the RFC 2741. | ||
|
||
* __getversion.py__ | ||
|
||
A script to reliably obtain the version of this agentXcpp copy. | ||
|
||
* __LICENSE__ | ||
|
||
Contains the AgentXcpp library LICENSE, which consists of the GPL and an | ||
additional linking exception. | ||
|
||
* __GPLv3__ | ||
|
||
The GNU GENERAL PUBLIC LICENSE, Version 3. | ||
|
||
* __README__ | ||
|
||
This file. | ||
|
||
* __SConstruct__ | ||
|
||
AgentXcpp is built using SCons. This file defines how to build the library | ||
and the documentation. | ||
|
||
* __site\_scons/__ | ||
|
||
This directory contains SCons supplements. The software contained in this | ||
directory is published under another license than agentXcpp, as it is not | ||
part of the agentXcpp software. Distribution is done for convenience. | ||
|
||
|
||
* __src/__ | ||
|
||
This directory contains the source code of the library. | ||
|
||
|
||
|
||
|
Oops, something went wrong.