summaryrefslogtreecommitdiffstats
path: root/debian/openslp-dfsg/openslp-dfsg-1.2.1/doc/html/ProgrammersGuide/SLPGetProperty.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-09-11 14:38:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-09-11 14:38:47 +0900
commit884c8093d63402a1ad0b502244b791e3c6782be3 (patch)
treea600d4ab0d431a2bdfe4c15b70df43c14fbd8dd0 /debian/openslp-dfsg/openslp-dfsg-1.2.1/doc/html/ProgrammersGuide/SLPGetProperty.html
parent14e1aa2006796f147f3f4811fb908a6b01e79253 (diff)
downloadextra-dependencies-884c8093d63402a1ad0b502244b791e3c6782be3.tar.gz
extra-dependencies-884c8093d63402a1ad0b502244b791e3c6782be3.zip
Added debian extra dependency packages.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/openslp-dfsg/openslp-dfsg-1.2.1/doc/html/ProgrammersGuide/SLPGetProperty.html')
-rw-r--r--debian/openslp-dfsg/openslp-dfsg-1.2.1/doc/html/ProgrammersGuide/SLPGetProperty.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/debian/openslp-dfsg/openslp-dfsg-1.2.1/doc/html/ProgrammersGuide/SLPGetProperty.html b/debian/openslp-dfsg/openslp-dfsg-1.2.1/doc/html/ProgrammersGuide/SLPGetProperty.html
new file mode 100644
index 00000000..7c27cb9d
--- /dev/null
+++ b/debian/openslp-dfsg/openslp-dfsg-1.2.1/doc/html/ProgrammersGuide/SLPGetProperty.html
@@ -0,0 +1,66 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="GENERATOR" content="Mozilla/4.77C-CCK-MCD Caldera Systems OpenLinux [en] (X11; U; Linux 2.4.2 i686) [Netscape]">
+ <title>OpenSLP Programmers Guide - SLPGetProperty()</title>
+</head>
+<body text="#000000" bgcolor="#FFFFFF" link="#0000EF" vlink="#51188E" alink="#FF0000">
+
+<h2>
+SLPGetProperty</h2>
+
+<hr WIDTH="100%">
+<h3>
+Declaration</h3>
+<tt>#include &lt;slp.h></tt>
+<p><tt>const char* SLPGetProperty( const char* <a href="#name">name</a>)</tt>
+<br>&nbsp;
+<h3>
+Description</h3>
+Returns the value of the corresponding SLP property name.&nbsp; The returned
+string is owned by the library and MUST NOT be freed.
+<br>&nbsp;
+<h3>
+Parameters</h3>
+
+<table BORDER CELLPADDING=5 NOSAVE >
+<tr VALIGN=TOP NOSAVE>
+<td NOSAVE><a NAME="name"></a><tt>name</tt></td>
+
+<td NOSAVE>The name of a net.slp property to get.&nbsp; See <a href="/broken">OpenSLP
+Users Guide</a> for a list of supported properties</td>
+</tr>
+</table>
+
+<h3>
+Returns</h3>
+A very thread unsafe character pointer to a string containing the property
+value.&nbsp; If an error occurs, like the property <tt>name</tt> is not
+found, NULL is returned so don't forget to check for NULL!
+<br>&nbsp;
+<h3>
+Status</h3>
+
+<table CELLPADDING=5 NOSAVE >
+<tr VALIGN=TOP NOSAVE>
+<td NOSAVE>OpenSLP 0.6.0</td>
+
+<td NOSAVE>Fully implemented as specified by RFC 2614.</td>
+</tr>
+</table>
+
+<h3>
+Notes</h3>
+For some reason the SLP API writers decided to make SLPGetProperty() and
+SLPSetProperty() calls impossible to implement in a thread safe manner.&nbsp;
+For this reason OpenSLP only allows read only access to SLP properties.&nbsp;
+Properties are read into static data structures when the process loads,
+and never changed so at least SLPGetProperty() can be called from threaded
+applications.
+<h3>
+See Also</h3>
+<a href="SLPSetProperty.html">SLPSetProperty()</a>,&nbsp; <a href="/broken">Open
+SLP Users Guide</a>
+</body>
+</html>