Changeset 672 for trunk/c2s/main.c
- Timestamp:
- 15/08/08 19:50:22 (5 months ago)
- Files:
-
- 1 modified
-
trunk/c2s/main.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/c2s/main.c
r662 r672 692 692 #endif 693 693 694 #ifdef HAVE_LIBZ 695 /* get compression up and running */ 696 if(c2s->compression) 697 sx_env_plugin(c2s->sx_env, sx_compress_init); 698 #endif 699 700 #ifdef ENABLE_EXPERIMENTAL 701 /* get stanza ack up */ 702 sx_env_plugin(c2s->sx_env, sx_ack_init); 703 704 /* and user IP address plugin */ 705 sx_env_plugin(c2s->sx_env, sx_address_init); 706 #endif 707 694 708 /* get sasl online */ 695 709 c2s->sx_sasl = sx_env_plugin(c2s->sx_env, sx_sasl_init, "xmpp", _c2s_sx_sasl_callback, (void *) c2s); … … 698 712 exit(1); 699 713 } 700 701 #ifdef HAVE_LIBZ702 /* get compression up and running */703 if(c2s->compression)704 sx_env_plugin(c2s->sx_env, sx_compress_init);705 #endif706 707 #ifdef ENABLE_EXPERIMENTAL708 /* get stanza ack up */709 sx_env_plugin(c2s->sx_env, sx_ack_init);710 711 /* and user IP address plugin */712 sx_env_plugin(c2s->sx_env, sx_address_init);713 #endif714 714 715 715 /* get bind up */
