diff options
| -rw-r--r-- | xmpp.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| @@ -1,11 +1,17 @@ +#include <stdlib.h>  #include <stdio.h>  void net_init(void)  {  	printf("net_init()\n"); + +	char* user_str = getenv("LIMOX_USER"); +	char* pwd_str = getenv("LIMOX_PWD"); + +	printf("Trying to connect as '%s' with '%s'.\n", user_str, pwd_str);  }  void net_quit(void) | 
