Changeset 192
- Timestamp:
- 07/05/07 20:44:58 (19 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 modified
-
etc/sm.xml.dist.in (modified) (2 diffs)
-
sm/Makefile.am (modified) (2 diffs)
-
sm/mod_iq_ping.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/etc/sm.xml.dist.in
r180 r192 242 242 <module>vacation</module> <!-- manage vacation settings --> 243 243 <module>iq-vcard</module> <!-- store and retrieve the user's vcard --> 244 <module>iq-ping</module> <!-- return the server ping --> 244 245 <module>iq-private</module> <!-- manage the user's private data store --> 245 246 <module>disco</module> <!-- respond to agents requests from sessions --> … … 280 281 <chain id='pkt-sm'> 281 282 <module>iq-last</module> <!-- return the server uptime --> 283 <module>iq-ping</module> <!-- return the server ping --> 282 284 <module>iq-time</module> <!-- return the current server time --> 283 285 <module>iq-version</module> <!-- return the server name and version --> -
trunk/sm/Makefile.am
r191 r192 10 10 mod_help.la \ 11 11 mod_iq-last.la \ 12 mod_iq-ping.la \ 12 13 mod_iq-private.la \ 13 14 mod_iq-time.la \ … … 80 81 mod_iq_last_la_LDFLAGS = -module -avoid-version 81 82 83 mod_iq_ping_la_SOURCES = mod_iq_ping.c 84 mod_iq_ping_la_LDFLAGS = -module -avoid-version 85 82 86 mod_iq_private_la_SOURCES = mod_iq_private.c 83 87 mod_iq_private_la_LDFLAGS = -module -avoid-version
