#include "rlevent.h"
#include "rlsocket.h"
#include "rltime.h"
#include "rlcutil.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
Go to the source code of this file.
void rlEventInit |
( |
int |
ac, |
|
|
char ** |
av, |
|
|
const char * |
module |
|
) |
| |
initialize rlEvent
parameters:
-eventhost=adr
-eventport=num
Definition at line 36 of file rlevent.cpp.
{
const char *cptr;
for(int i=0; i<ac; i++)
{
cptr = av[i];
}
}
void rlEventPrintf |
( |
int |
event_type, |
|
|
const char * |
format, |
|
|
|
... |
|
) |
| |
output the message
Definition at line 82 of file rlevent.cpp.
{
va_list ap;
va_start(ap,format);
va_end(ap);
if(event_type < 0 ) event_type =
rlError;
#ifdef RLUNIX
);
#endif
#ifdef __VMS
);
#endif
#ifdef RLWIN32
_snprintf(rlfinal,sizeof(rlfinal)-1,"%s %s %s %s%s\n",
);
#endif
{
}
else
{
{
}
}
}
void rlSetEventLocation |
( |
const char * |
file, |
|
|
int |
line |
|
) |
| |
set the location where rlEvent is called
Definition at line 50 of file rlevent.cpp.
{
#ifdef RLWIN32
const char *cptr;
if(strchr(file,'\\') == NULL) cptr = NULL
else cptr = strrchr(file,'\\');
if(cptr != NULL) cptr++;
else cptr = file;
#endif
#ifdef __VMS
const char *cptr;
if(strchr(file,']') == NULL) cptr = NULL
else cptr = strrchr(file,']');
if(cptr != NULL) cptr++;
else cptr = file;
#endif
#ifdef RLUNIX
#endif
#ifdef __VMS
#endif
#ifdef RLWIN32
#endif
}
rlSocket toEventLogServer("localhost",-1, 1) |
|
static |