summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/libwellenreiter/docs/quickintro
Unidiff
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.