summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/libwellenreiter/docs/quickintro
authormjm <mjm>2002-11-22 23:39:26 (UTC)
committer mjm <mjm>2002-11-22 23:39:26 (UTC)
commit5a346c71bf5255eb769c9fceb34358c06e60aef3 (patch) (unidiff)
tree6d600718317d56c411c2d91259e73780a99be60d /noncore/net/wellenreiter/libwellenreiter/docs/quickintro
parenta71b9d79a05ab2b6bc891afe4df4d5fdcf641550 (diff)
downloadopie-5a346c71bf5255eb769c9fceb34358c06e60aef3.zip
opie-5a346c71bf5255eb769c9fceb34358c06e60aef3.tar.gz
opie-5a346c71bf5255eb769c9fceb34358c06e60aef3.tar.bz2
ripped stuff from daemon and generalized it for libary usage
Diffstat (limited to 'noncore/net/wellenreiter/libwellenreiter/docs/quickintro') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/libwellenreiter/docs/quickintro35
1 files changed, 35 insertions, 0 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/docs/quickintro b/noncore/net/wellenreiter/libwellenreiter/docs/quickintro
new file mode 100644
index 0000000..e4978a1
--- a/dev/null
+++ b/noncore/net/wellenreiter/libwellenreiter/docs/quickintro
@@ -0,0 +1,35 @@
1
2Name: libwellenreiter
3Author: Martin J. Muench
4
5NOTE: This is just a very short summary of the functions included
6in libwellenreiter, written because a lack of time. The whole
7library will be rewritten with extended documentation and
8test programs.
9
10Included functions:
11
12Log to syslog/info:
13void wl_loginfo(const char *, ...);
14
15Log to syslog/err:
16void wl_logerr(const char *, ...);
17
18Use like printf() function with format strings and so on.
19
20
21Setup udp socket for incoming commands:
22int commsock(const char *, int);
23
24Fist argument is the host where it should listen and second
25is the port.
26
27Return values:
28
29Send command to udp socket:
30int sendcomm(const char *, int, const char *, ...);
31
32First two arguments are the host and port where the command should
33be send to, followed by buffer that should be send.
34
35Thats it for the moment.