Changeset 192

Show
Ignore:
Timestamp:
07/05/07 20:44:58 (19 months ago)
Author:
smoku
Message:

Implemented XEP-0199: XMPP Ping [DeSnajpa?]. Closes #23

Location:
trunk
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/etc/sm.xml.dist.in

    r180 r192  
    242242      <module>vacation</module>         <!-- manage vacation settings --> 
    243243      <module>iq-vcard</module>         <!-- store and retrieve the user's vcard --> 
     244      <module>iq-ping</module>          <!-- return the server ping --> 
    244245      <module>iq-private</module>       <!-- manage the user's private data store --> 
    245246      <module>disco</module>            <!-- respond to agents requests from sessions --> 
     
    280281    <chain id='pkt-sm'> 
    281282      <module>iq-last</module>          <!-- return the server uptime --> 
     283      <module>iq-ping</module>          <!-- return the server ping --> 
    282284      <module>iq-time</module>          <!-- return the current server time --> 
    283285      <module>iq-version</module>       <!-- return the server name and version --> 
  • trunk/sm/Makefile.am

    r191 r192  
    1010                  mod_help.la \ 
    1111                  mod_iq-last.la \ 
     12                  mod_iq-ping.la \ 
    1213                  mod_iq-private.la \ 
    1314                  mod_iq-time.la \ 
     
    8081mod_iq_last_la_LDFLAGS = -module -avoid-version 
    8182 
     83mod_iq_ping_la_SOURCES = mod_iq_ping.c 
     84mod_iq_ping_la_LDFLAGS = -module -avoid-version 
     85 
    8286mod_iq_private_la_SOURCES = mod_iq_private.c 
    8387mod_iq_private_la_LDFLAGS = -module -avoid-version