Rename public types and constants in session.h

Preparing to split session.h into module and core sections.
This commit is contained in:
Esa Korhonen
2017-01-17 15:02:39 +02:00
parent 680401cf8e
commit fb771c8a2e
56 changed files with 241 additions and 241 deletions

View File

@ -117,7 +117,7 @@ MXS_MODULE* MXS_CREATE_MODULE()
static int
cdc_read_event(DCB* dcb)
{
SESSION *session = dcb->session;
MXS_SESSION *session = dcb->session;
CDC_protocol *protocol = (CDC_protocol *) dcb->protocol;
int n, auth_val, rc = 0;
GWBUF *head = NULL;
@ -199,7 +199,7 @@ cdc_read_event(DCB* dcb)
(int)GWBUF_LENGTH(head), (char*)GWBUF_DATA(head));
// gwbuf_set_type(head, GWBUF_TYPE_CDC);
rc = SESSION_ROUTE_QUERY(session, head);
rc = MXS_SESSION_ROUTE_QUERY(session, head);
}
break;