aboutsummaryrefslogtreecommitdiffstats
path: root/libical/src/libicalss
diff options
context:
space:
mode:
Diffstat (limited to 'libical/src/libicalss')
-rw-r--r--libical/src/libicalss/Makefile.am6
-rw-r--r--libical/src/libicalss/icalcstp.h13
2 files changed, 10 insertions, 9 deletions
diff --git a/libical/src/libicalss/Makefile.am b/libical/src/libicalss/Makefile.am
index 0cbecbedea..732d970738 100644
--- a/libical/src/libicalss/Makefile.am
+++ b/libical/src/libicalss/Makefile.am
@@ -17,12 +17,12 @@ libicalss_la_LDFLAGS = -version-info 0:0:0
libicalss_la_SOURCES = \
icalclassify.c \
+ icalgauge.c \
+ icalgaugeimpl.h \
icaldirset.c \
icaldirsetimpl.h \
icalfileset.c \
icalfilesetimpl.h \
- icalgauge.c \
- icalgaugeimpl.h \
icalset.c \
icalsslexer.l \
icalssutil.c \
@@ -35,11 +35,11 @@ libicalss_la_SOURCES = \
libicalssincludedir = $(includedir)
COMBINEDHEADERS = \
+ icalgauge.h \
icalset.h \
icalfileset.h \
icaldirset.h \
icalcalendar.h \
- icalgauge.h \
icalssutil.h \
icalclassify.h \
icalspanlist.h \
diff --git a/libical/src/libicalss/icalcstp.h b/libical/src/libicalss/icalcstp.h
index 63f5af913f..2ebccd622a 100644
--- a/libical/src/libicalss/icalcstp.h
+++ b/libical/src/libicalss/icalcstp.h
@@ -52,9 +52,10 @@
1) Construct a new icalcstps, bound to your code via stubs
2) Repeat forever:
- 2a) Get string from client & give to icalcstps_next_input()
- 2b) Call icalcstps_next_output. Send string to client.
-
+ 2a) Get string from client & give to icalcstps_next_input()
+ 2b) Repeat until icalcstp_next_output returns 0:
+ 2b1) Call icalcstps_next_output.
+ 2b2) Send string to client.
*/
@@ -101,11 +102,11 @@ int icalcstps_next_input(icalcstps* cstp);
/* How to use:
1) Construct a new icalcstpc
- 2) Issue a command
+ 2) Issue a command by calling one of the command routines.
3) Repeat until both call icalcstpc_next_output and
icalcstpc_next_input return 0:
- 3a) Call icalcstpc_next_output. Send string to server.
- 3b) Get string from server, & give to icalcstp_next_input()
+ 3a) Call icalcstpc_next_output. Send string to server.
+ 3b) Get string from server, & give to icalcstp_next_input()
4) Iterate with icalcstpc_first_response & icalcstp_next_response to
get the servers responses
5) Repeat at #2