2008-12-20 00:35:09 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <esl.h>
|
|
|
|
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2008-12-21 21:54:43 +00:00
|
|
|
esl_handle_t handle = {{0}};
|
2008-12-20 00:35:09 +00:00
|
|
|
|
|
|
|
esl_connect(&handle, "localhost", 8021, "ClueCon");
|
|
|
|
|
2009-02-06 16:05:46 +00:00
|
|
|
esl_send_recv(&handle, "api status\n\n");
|
2008-12-20 00:35:09 +00:00
|
|
|
|
|
|
|
esl_disconnect(&handle);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|