summaryrefslogtreecommitdiff
path: root/src/ivyprobe.c
diff options
context:
space:
mode:
authorfcolin2005-07-26 08:47:24 +0000
committerfcolin2005-07-26 08:47:24 +0000
commitfb6aa032cf84f543234534cd2c24102eb730bbc4 (patch)
treee6815d6ca0e3f62274119c38f2cb2818bbdb0a01 /src/ivyprobe.c
parentd5fc9f417c02ebe34b8f06847c375cd246f8c832 (diff)
downloadivy-c-fb6aa032cf84f543234534cd2c24102eb730bbc4.zip
ivy-c-fb6aa032cf84f543234534cd2c24102eb730bbc4.tar.gz
ivy-c-fb6aa032cf84f543234534cd2c24102eb730bbc4.tar.bz2
ivy-c-fb6aa032cf84f543234534cd2c24102eb730bbc4.tar.xz
compile sur Windows
les fichiers getopt sont necessaires uniquement sur Windows( WIN32 ) compilateur VStudio
Diffstat (limited to 'src/ivyprobe.c')
-rw-r--r--src/ivyprobe.c44
1 files changed, 23 insertions, 21 deletions
diff --git a/src/ivyprobe.c b/src/ivyprobe.c
index 1da9ebc..8143706 100644
--- a/src/ivyprobe.c
+++ b/src/ivyprobe.c
@@ -37,22 +37,21 @@
#ifdef __MINGW32__
#include <regex.h>
#include <getopt.h>
-#endif
-#else
+#endif // __MINGW32__
+#else // WIN32
#include <sys/time.h>
#include <unistd.h>
#ifdef __INTERIX
extern char *optarg;
extern int optind;
-#endif
-#ifndef USE_PCRE_REGEX
-#include <regex.h>
-#else
+#endif // __INTERIX
+#endif // WIN32
+
+#ifdef USE_PCRE_REGEX
#define OVECSIZE 60 /* must be multiple of 3, for regexp return */
#include <pcre.h>
-#endif
-
-
+#else
+#include <regex.h>
#endif
#include "ivychannel.h"
@@ -70,10 +69,10 @@ int app_count = 0;
int wait_count = 0;
int fbindcallback = 0;
-void DirectCallback(IvyClientPtr app, void *user_data, int id, char *msg )
+void DirectCallback(IvyClientPtr app, void *user_data, int id, int len, void *msg )
{
printf("%s sent a direct message, id=%d, message=%s\n",
- IvyGetApplicationName(app),id,msg);
+ IvyGetApplicationName(app),id,(char*)msg);
}
void BindCallback(IvyClientPtr app, void *user_data, IvyBindEvent event, char *regexp )
@@ -109,6 +108,7 @@ void HandleStdin (Channel channel, HANDLE fd, void *data)
char *line;
char *cmd;
char *arg;
+ char *choparg;
int id;
IvyClientPtr app;
int err;
@@ -145,7 +145,15 @@ void HandleStdin (Channel channel, HANDLE fd, void *data)
} else if (strcmp(cmd, "bind") == 0) {
arg = strtok (NULL, "'");
if (arg) {
-#ifndef USE_PCRE_REGEX
+#ifdef USE_PCRE_REGEX
+ pcre *regexp;
+ const char *errbuf;
+ int erroffset;
+ Chop(arg);
+ regexp = pcre_compile(arg, 0,&errbuf,&erroffset,NULL);
+ if (regexp==NULL) {
+ printf("Error compiling '%s', %s, not bound\n", arg, errbuf);
+#else
regex_t reg;
int err;
Chop(arg);
@@ -153,14 +161,7 @@ void HandleStdin (Channel channel, HANDLE fd, void *data)
char errbuf[4096];
regerror (err, &reg, errbuf, 4096);
printf("Error compiling '%s', %s, not bound\n", arg, errbuf);
-#else
- pcre *regexp;
- const char *errbuf;
- int erroffset;
- Chop(arg);
- regexp = pcre_compile(arg, 0,&errbuf,&erroffset,NULL);
- if (regexp==NULL) {
- printf("Error compiling '%s', %s, not bound\n", arg, errbuf);
+
#endif
} else {
IvyBindMsg (Callback, NULL, Chop(arg));
@@ -178,12 +179,13 @@ void HandleStdin (Channel channel, HANDLE fd, void *data)
} else if (strcmp(cmd, "direct") == 0) {
arg = strtok (NULL, " \n");
if (arg) {
+ choparg = Chop(arg);
app = IvyGetApplication (arg);
if (app) {
arg = strtok (NULL, " ");
id = atoi (arg) ;
arg = strtok (NULL, "'");
- IvySendDirectMsg (app, id, Chop(arg));
+ IvySendDirectMsg (app, id, strlen(choparg), choparg);
} else
printf ("No Application %s!!!\n",arg);
}