summaryrefslogtreecommitdiff
path: root/ext/snmp
diff options
context:
space:
mode:
authorEgon Schmid <eschmid@php.net>2000-02-24 07:38:19 +0000
committerEgon Schmid <eschmid@php.net>2000-02-24 07:38:19 +0000
commit5bccee70ae987856a020db314717169a42a3148f (patch)
tree42bd5c092909d82d2d003924091de16eb73da52c /ext/snmp
parent9c94a2b971251fdf9d56a2a7c14f5894858ac6a1 (diff)
downloadphp-git-5bccee70ae987856a020db314717169a42a3148f.tar.gz
More protos.
Diffstat (limited to 'ext/snmp')
-rw-r--r--ext/snmp/snmp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c
index 08b0bcf768..799a7208ca 100644
--- a/ext/snmp/snmp.c
+++ b/ext/snmp/snmp.c
@@ -318,21 +318,21 @@ retry:
}
/* {{{ proto string snmpget(string host, string community, string object_id [, int timeout [, int retries]])
-Fetch an SNMP object */
+ Fetch an SNMP object */
PHP_FUNCTION(snmpget) {
php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,1);
}
/* }}} */
/* {{{ proto string snmpwalk(string host, string community, string object_id [, int timeout [, int retries]])
-Return all objects under the specified object id */
+ Return all objects under the specified object id */
PHP_FUNCTION(snmpwalk) {
return php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,2);
}
/* }}} */
/* {{{ proto string snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]])
-Return all objects including their respective object id withing the specified one */
+ Return all objects including their respective object id withing the specified one */
PHP_FUNCTION(snmprealwalk)
{
return php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,3);
@@ -340,7 +340,7 @@ PHP_FUNCTION(snmprealwalk)
/* }}} */
/* {{{ proto string snmprealoid(string host, string community, string object_id [, int timeout [, int retries]])
-Return all objects including their respective object id withing the specified one */
+ Return all objects including their respective object id withing the specified one */
PHP_FUNCTION(snmpwalkoid)
{
php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,4);
@@ -348,7 +348,7 @@ PHP_FUNCTION(snmpwalkoid)
/* }}} */
/* {{{ proto int snmp_get_quick_print(void)
-Return the current status of quick_print */
+ Return the current status of quick_print */
PHP_FUNCTION(snmp_get_quick_print)
{
php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,9);
@@ -356,7 +356,7 @@ PHP_FUNCTION(snmp_get_quick_print)
/* }}} */
/* {{{ proto void snmp_set_quick_print(int quick_print)
-Return all objects including their respective object id withing the specified one */
+ Return all objects including their respective object id withing the specified one */
PHP_FUNCTION(snmp_set_quick_print)
{
php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,10);
@@ -364,7 +364,7 @@ PHP_FUNCTION(snmp_set_quick_print)
/* }}} */
/* {{{ proto int snmpset(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]])
-Set the value of a SNMP object */
+ Set the value of a SNMP object */
PHP_FUNCTION(snmpset) {
php_snmp(INTERNAL_FUNCTION_PARAM_PASSTHRU,11);
}