finish up last commit
This commit is contained in:
parent
391da66cac
commit
1c775c3bf0
|
@ -536,7 +536,7 @@ ESL_DECLARE(esl_status_t) esl_execute(esl_handle_t *handle, const char *app, con
|
||||||
|
|
||||||
ESL_DECLARE(esl_status_t) esl_sendmsg(esl_handle_t *handle, esl_event_t *event, const char *uuid)
|
ESL_DECLARE(esl_status_t) esl_sendmsg(esl_handle_t *handle, esl_event_t *event, const char *uuid)
|
||||||
{
|
{
|
||||||
char cmd_buf[128] = "sendmsg";
|
char cmd_buf[128] = "sendmsg\n";
|
||||||
char send_buf[1292] = "";
|
char send_buf[1292] = "";
|
||||||
char *txt;
|
char *txt;
|
||||||
|
|
||||||
|
@ -545,12 +545,13 @@ ESL_DECLARE(esl_status_t) esl_sendmsg(esl_handle_t *handle, esl_event_t *event,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (uuid) {
|
if (uuid) {
|
||||||
snprintf(cmd_buf, sizeof(cmd_buf), "sendmsg %s", uuid);
|
snprintf(cmd_buf, sizeof(cmd_buf), "sendmsg %s\n", uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
esl_event_serialize(event, &txt, ESL_FALSE);
|
esl_event_serialize(event, &txt, ESL_FALSE);
|
||||||
esl_log(ESL_LOG_DEBUG, "SENDMSG\n%s\n", txt);
|
esl_log(ESL_LOG_DEBUG, "%s%s\n", cmd_buf, txt);
|
||||||
|
|
||||||
|
if (send(handle->sock, cmd_buf, strlen(cmd_buf), 0) <= 0) goto fail;
|
||||||
if (send(handle->sock, txt, strlen(txt), 0) <= 0) goto fail;
|
if (send(handle->sock, txt, strlen(txt), 0) <= 0) goto fail;
|
||||||
|
|
||||||
free(txt);
|
free(txt);
|
||||||
|
|
|
@ -791,7 +791,7 @@ ESL_DECLARE(esl_status_t) esl_event_serialize(esl_event_t *event, char **str, es
|
||||||
if (encode) {
|
if (encode) {
|
||||||
esl_url_encode(hp->value, encode_buf, encode_len);
|
esl_url_encode(hp->value, encode_buf, encode_len);
|
||||||
} else {
|
} else {
|
||||||
esl_snprintf(encode_buf, encode_len, "[%s]", hp->value);
|
esl_snprintf(encode_buf, encode_len, "%s", hp->value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue