|
|
| version 1.1.2.7, 2011/12/05 08:15:50 | version 1.1.2.9, 2011/12/05 14:11:47 |
|---|---|
| Line 7 extern char cliCmd[], *cliStr[]; | Line 7 extern char cliCmd[], *cliStr[]; |
| static void * | static void * |
| startSession(sched_task_t *task) | startSession(sched_task_t *task) |
| { | { |
| mqtt_msg_t *buf; | static u_char basebuf[USHRT_MAX]; |
| mqtt_cb_t cbs[MQTT_TYPE_MAX + 1] = { 0 }; | mqtt_cb_t cbs[MQTT_TYPE_MAX + 1] = { 0 }; |
| struct mqtthdr *hdr; | mqtt_msg_t *buf; |
| int ret = 0; | int ret = 0; |
| register int i; | |
| FTRACE(4); | FTRACE(4); |
| /* | |
| buf = mqtt_msgAlloc(USHRT_MAX); | buf = mqtt_msgAlloc(USHRT_MAX); |
| if (!buf) { | if (!buf) { |
| syslog(LOG_ERR, "Error:: allocate message buf (%d) #%d - %s", (int) TASK_FD(task), | syslog(LOG_ERR, "Error:: allocate message buf (%d) #%d - %s", (int) TASK_FD(task), |
| mqtt_GetErrno(), mqtt_GetError()); | mqtt_GetErrno(), mqtt_GetError()); |
| goto end; | goto end; |
| } | } |
| */ | |
| if (recv(TASK_FD(task), buf->msg_base, buf->msg_len, 0) == -1) { | if (recv(TASK_FD(task), basebuf, sizeof basebuf, 0) == -1) { |
| syslog(LOG_ERR, "Error:: recv(%d) #%d - %s", (int) TASK_FD(task), | VERB(3) syslog(LOG_ERR, "Error:: recv(%d) #%d - %s", (int) TASK_FD(task), |
| errno, strerror(errno)); | errno, strerror(errno)); |
| mqtt_msgFree(&buf, 42); | |
| goto end; | goto end; |
| } else { | } |
| hdr = (struct mqtthdr*) buf->msg_base; | |
| /* | |
| for (ret = i = 0; cliCmd[i] && !(ret = (hdr->mqtt_msg.type == cliCmd[i])); i++); | for (ret = i = 0; cliCmd[i] && !(ret = (hdr->mqtt_msg.type == cliCmd[i])); i++); |
| if (!ret) { | if (!ret) { |
| syslog(LOG_ERR, "Error:: wrong command type #%d %s", | VERB(2) syslog(LOG_ERR, "Error:: wrong command type #%d %s", |
| hdr->mqtt_msg.type, cliStr[i]); | hdr->mqtt_msg.type, cliStr[i]); |
| mqtt_msgFree(&buf, 42); | |
| goto end; | goto end; |
| } | } |
| } | */ |
| ret = mqttDispatcher(cbs, buf); | /* check online table for user */ |
| // ChkSessPUB(&cfg, ); | |
| mqtt_msgFree(&buf, 42); | ret = mqttDispatcher(cbs, buf); |
| // mqtt_msgFree(&buf, 42); | |
| switch (ret) { | switch (ret) { |
| case -1: | case -1: |