view src/mysql/ngx_mysql.h @ 649:1e720b0be7ec release-0.3.46

nginx-0.3.46-RELEASE import *) Feature: the "proxy_hide_header", "proxy_pass_header", "fastcgi_hide_header", and "fastcgi_pass_header" directives. *) Change: the "proxy_pass_x_powered_by", "fastcgi_x_powered_by", and "proxy_pass_server" directives were canceled. *) Feature: the "X-Accel-Buffering" response header line is supported in proxy mode. *) Bugfix: the reconfiguration bug and memory leaks in the ngx_http_perl_module.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 11 May 2006 14:43:47 +0000
parents 4946078f0a79
children 7cbef16c71a1
line wrap: on
line source


/*
 * Copyright (C) Igor Sysoev
 */


#ifndef _NGX_MYSQL_H_INCLUDED_
#define _NGX_MYSQL_H_INCLUDED_


#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_event.h>


typedef struct {
    ngx_peer_connection_t   peer;
} ngx_mysql_t;


#if (NGX_HAVE_LITTLE_ENDIAN && NGX_HAVE_NONALIGNED && 0)

#define ngx_m16toh(n)   (*(uint32_t *) n & 0x0000ffff)
#define ngx_m24toh(n)   (*(uint32_t *) n & 0x00ffffff)
#define ngx_m32toh(n)   *(uint32_t *) n

#else

#define ngx_m16toh(n)   (n[0] | n[1] << 8)
#define ngx_m24toh(n)   (n[0] | n[1] << 8 | n[2] << 16)
#define ngx_m32toh(n)   (n[0] | n[1] << 8 | n[2] << 16 | n[3] << 24)

#endif


#endif /* _NGX_MYSQL_H_INCLUDED_ */