Blame protocol_binary.h

Packit Service 584ef9
/*
Packit Service 584ef9
 * Copyright (c) <2008>, Sun Microsystems, Inc.
Packit Service 584ef9
 * All rights reserved.
Packit Service 584ef9
 *
Packit Service 584ef9
 * Redistribution and use in source and binary forms, with or without
Packit Service 584ef9
 * modification, are permitted provided that the following conditions are met:
Packit Service 584ef9
 *     * Redistributions of source code must retain the above copyright
Packit Service 584ef9
 *       notice, this list of conditions and the following disclaimer.
Packit Service 584ef9
 *     * Redistributions in binary form must reproduce the above copyright
Packit Service 584ef9
 *       notice, this list of conditions and the following disclaimer in the
Packit Service 584ef9
 *       documentation and/or other materials provided with the distribution.
Packit Service 584ef9
 *     * Neither the name of the  nor the
Packit Service 584ef9
 *       names of its contributors may be used to endorse or promote products
Packit Service 584ef9
 *       derived from this software without specific prior written permission.
Packit Service 584ef9
 *
Packit Service 584ef9
 * THIS SOFTWARE IS PROVIDED BY SUN MICROSYSTEMS, INC. ``AS IS'' AND ANY
Packit Service 584ef9
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
Packit Service 584ef9
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit Service 584ef9
 * DISCLAIMED. IN NO EVENT SHALL SUN MICROSYSTEMS, INC. BE LIABLE FOR ANY
Packit Service 584ef9
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
Packit Service 584ef9
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
Packit Service 584ef9
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
Packit Service 584ef9
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit Service 584ef9
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
Packit Service 584ef9
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit Service 584ef9
 */
Packit Service 584ef9
/*
Packit Service 584ef9
 * Summary: Constants used by to implement the binary protocol.
Packit Service 584ef9
 *
Packit Service 584ef9
 * Copy: See Copyright for the status of this software.
Packit Service 584ef9
 *
Packit Service 584ef9
 * Author: Trond Norbye <trond.norbye@sun.com>
Packit Service 584ef9
 */
Packit Service 584ef9
Packit Service 584ef9
#ifndef PROTOCOL_BINARY_H
Packit Service 584ef9
#define PROTOCOL_BINARY_H
Packit Service 584ef9
Packit Service 584ef9
/**
Packit Service 584ef9
 * This file contains definitions of the constants and packet formats
Packit Service 584ef9
 * defined in the binary specification. Please note that you _MUST_ remember
Packit Service 584ef9
 * to convert each multibyte field to / from network byte order to / from
Packit Service 584ef9
 * host order.
Packit Service 584ef9
 */
Packit Service 584ef9
#ifdef __cplusplus
Packit Service 584ef9
extern "C"
Packit Service 584ef9
{
Packit Service 584ef9
#endif
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the legal "magic" values used in a packet.
Packit Service 584ef9
     * See section 3.1 Magic byte
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef enum {
Packit Service 584ef9
        PROTOCOL_BINARY_REQ = 0x80,
Packit Service 584ef9
        PROTOCOL_BINARY_RES = 0x81
Packit Service 584ef9
    } protocol_binary_magic;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the valid response status numbers.
Packit Service 584ef9
     * See section 3.2 Response Status
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef enum {
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_SUCCESS = 0x00,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_KEY_ENOENT = 0x01,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_KEY_EEXISTS = 0x02,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_E2BIG = 0x03,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_EINVAL = 0x04,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_NOT_STORED = 0x05,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_DELTA_BADVAL = 0x06,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_AUTH_ERROR = 0x20,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_AUTH_CONTINUE = 0x21,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_UNKNOWN_COMMAND = 0x81,
Packit Service 584ef9
        PROTOCOL_BINARY_RESPONSE_ENOMEM = 0x82
Packit Service 584ef9
    } protocol_binary_response_status;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the different command opcodes.
Packit Service 584ef9
     * See section 3.3 Command Opcodes
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef enum {
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_GET = 0x00,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_SET = 0x01,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_ADD = 0x02,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_REPLACE = 0x03,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_DELETE = 0x04,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_INCREMENT = 0x05,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_DECREMENT = 0x06,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_QUIT = 0x07,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_FLUSH = 0x08,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_GETQ = 0x09,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_NOOP = 0x0a,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_VERSION = 0x0b,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_GETK = 0x0c,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_GETKQ = 0x0d,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_APPEND = 0x0e,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_PREPEND = 0x0f,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_STAT = 0x10,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_SETQ = 0x11,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_ADDQ = 0x12,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_REPLACEQ = 0x13,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_DELETEQ = 0x14,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_INCREMENTQ = 0x15,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_DECREMENTQ = 0x16,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_QUITQ = 0x17,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_FLUSHQ = 0x18,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_APPENDQ = 0x19,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_PREPENDQ = 0x1a,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_TOUCH = 0x1c,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_GAT = 0x1d,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_GATQ = 0x1e,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_GATK = 0x23,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_GATKQ = 0x24,
Packit Service 584ef9
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_SASL_LIST_MECHS = 0x20,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_SASL_AUTH = 0x21,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_SASL_STEP = 0x22,
Packit Service 584ef9
Packit Service 584ef9
        /* These commands are used for range operations and exist within
Packit Service 584ef9
         * this header for use in other projects.  Range operations are
Packit Service 584ef9
         * not expected to be implemented in the memcached server itself.
Packit Service 584ef9
         */
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RGET      = 0x30,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RSET      = 0x31,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RSETQ     = 0x32,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RAPPEND   = 0x33,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RAPPENDQ  = 0x34,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RPREPEND  = 0x35,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RPREPENDQ = 0x36,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RDELETE   = 0x37,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RDELETEQ  = 0x38,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RINCR     = 0x39,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RINCRQ    = 0x3a,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RDECR     = 0x3b,
Packit Service 584ef9
        PROTOCOL_BINARY_CMD_RDECRQ    = 0x3c
Packit Service 584ef9
        /* End Range operations */
Packit Service 584ef9
Packit Service 584ef9
    } protocol_binary_command;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the data types in the packet
Packit Service 584ef9
     * See section 3.4 Data Types
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef enum {
Packit Service 584ef9
        PROTOCOL_BINARY_RAW_BYTES = 0x00
Packit Service 584ef9
    } protocol_binary_datatypes;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the header structure for a request packet.
Packit Service 584ef9
     * See section 2
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            uint8_t magic;
Packit Service 584ef9
            uint8_t opcode;
Packit Service 584ef9
            uint16_t keylen;
Packit Service 584ef9
            uint8_t extlen;
Packit Service 584ef9
            uint8_t datatype;
Packit Service 584ef9
            uint16_t reserved;
Packit Service 584ef9
            uint32_t bodylen;
Packit Service 584ef9
            uint32_t opaque;
Packit Service 584ef9
            uint64_t cas;
Packit Service 584ef9
        } request;
Packit Service 584ef9
        uint8_t bytes[24];
Packit Service 584ef9
    } protocol_binary_request_header;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the header structure for a response packet.
Packit Service 584ef9
     * See section 2
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            uint8_t magic;
Packit Service 584ef9
            uint8_t opcode;
Packit Service 584ef9
            uint16_t keylen;
Packit Service 584ef9
            uint8_t extlen;
Packit Service 584ef9
            uint8_t datatype;
Packit Service 584ef9
            uint16_t status;
Packit Service 584ef9
            uint32_t bodylen;
Packit Service 584ef9
            uint32_t opaque;
Packit Service 584ef9
            uint64_t cas;
Packit Service 584ef9
        } response;
Packit Service 584ef9
        uint8_t bytes[24];
Packit Service 584ef9
    } protocol_binary_response_header;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of a request-packet containing no extras
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_request_header header;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_request_header)];
Packit Service 584ef9
    } protocol_binary_request_no_extras;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of a response-packet containing no extras
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_response_header header;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_response_header)];
Packit Service 584ef9
    } protocol_binary_response_no_extras;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by the get, getq, getk and getkq command.
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_get;
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_getq;
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_getk;
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_getkq;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned from a successful get, getq, getk and
Packit Service 584ef9
     * getkq.
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_response_header header;
Packit Service 584ef9
            struct {
Packit Service 584ef9
                uint32_t flags;
Packit Service 584ef9
            } body;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_response_header) + 4];
Packit Service 584ef9
    } protocol_binary_response_get;
Packit Service 584ef9
Packit Service 584ef9
    typedef protocol_binary_response_get protocol_binary_response_getq;
Packit Service 584ef9
    typedef protocol_binary_response_get protocol_binary_response_getk;
Packit Service 584ef9
    typedef protocol_binary_response_get protocol_binary_response_getkq;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by the delete command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_delete;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned by the delete command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_delete;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by the flush command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     * Please note that the expiration field is optional, so remember to see
Packit Service 584ef9
     * check the header.bodysize to see if it is present.
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_request_header header;
Packit Service 584ef9
            struct {
Packit Service 584ef9
                uint32_t expiration;
Packit Service 584ef9
            } body;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_request_header) + 4];
Packit Service 584ef9
    } protocol_binary_request_flush;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned by the flush command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_flush;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by set, add and replace
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_request_header header;
Packit Service 584ef9
            struct {
Packit Service 584ef9
                uint32_t flags;
Packit Service 584ef9
                uint32_t expiration;
Packit Service 584ef9
            } body;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_request_header) + 8];
Packit Service 584ef9
    } protocol_binary_request_set;
Packit Service 584ef9
    typedef protocol_binary_request_set protocol_binary_request_add;
Packit Service 584ef9
    typedef protocol_binary_request_set protocol_binary_request_replace;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned by set, add and replace
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_set;
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_add;
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_replace;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the noop packet
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_noop;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned by the noop command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_noop;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the structure used by the increment and decrement
Packit Service 584ef9
     * command.
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_request_header header;
Packit Service 584ef9
            struct {
Packit Service 584ef9
                uint64_t delta;
Packit Service 584ef9
                uint64_t initial;
Packit Service 584ef9
                uint32_t expiration;
Packit Service 584ef9
            } body;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_request_header) + 20];
Packit Service 584ef9
    } protocol_binary_request_incr;
Packit Service 584ef9
    typedef protocol_binary_request_incr protocol_binary_request_decr;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the response from an incr or decr command
Packit Service 584ef9
     * command.
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_response_header header;
Packit Service 584ef9
            struct {
Packit Service 584ef9
                uint64_t value;
Packit Service 584ef9
            } body;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_response_header) + 8];
Packit Service 584ef9
    } protocol_binary_response_incr;
Packit Service 584ef9
    typedef protocol_binary_response_incr protocol_binary_response_decr;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the quit
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_quit;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned by the quit command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_quit;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by append and prepend command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_append;
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_prepend;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned from a successful append or prepend
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_append;
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_prepend;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by the version command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_version;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned from a successful version command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_version;
Packit Service 584ef9
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by the stats command.
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_request_no_extras protocol_binary_request_stats;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned from a successful stats command
Packit Service 584ef9
     * See section 4
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_stats;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by the touch command.
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_request_header header;
Packit Service 584ef9
            struct {
Packit Service 584ef9
                uint32_t expiration;
Packit Service 584ef9
            } body;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_request_header) + 4];
Packit Service 584ef9
    } protocol_binary_request_touch;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned from the touch command
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_no_extras protocol_binary_response_touch;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet used by the GAT(Q) command.
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_request_header header;
Packit Service 584ef9
            struct {
Packit Service 584ef9
                uint32_t expiration;
Packit Service 584ef9
            } body;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_request_header) + 4];
Packit Service 584ef9
    } protocol_binary_request_gat;
Packit Service 584ef9
Packit Service 584ef9
    typedef protocol_binary_request_gat protocol_binary_request_gatq;
Packit Service 584ef9
    typedef protocol_binary_request_gat protocol_binary_request_gatk;
Packit Service 584ef9
    typedef protocol_binary_request_gat protocol_binary_request_gatkq;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of the packet returned from the GAT(Q)
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef protocol_binary_response_get protocol_binary_response_gat;
Packit Service 584ef9
    typedef protocol_binary_response_get protocol_binary_response_gatq;
Packit Service 584ef9
    typedef protocol_binary_response_get protocol_binary_response_gatk;
Packit Service 584ef9
    typedef protocol_binary_response_get protocol_binary_response_gatkq;
Packit Service 584ef9
Packit Service 584ef9
    /**
Packit Service 584ef9
     * Definition of a request for a range operation.
Packit Service 584ef9
     * See http://code.google.com/p/memcached/wiki/RangeOps
Packit Service 584ef9
     *
Packit Service 584ef9
     * These types are used for range operations and exist within
Packit Service 584ef9
     * this header for use in other projects.  Range operations are
Packit Service 584ef9
     * not expected to be implemented in the memcached server itself.
Packit Service 584ef9
     */
Packit Service 584ef9
    typedef union {
Packit Service 584ef9
        struct {
Packit Service 584ef9
            protocol_binary_response_header header;
Packit Service 584ef9
            struct {
Packit Service 584ef9
                uint16_t size;
Packit Service 584ef9
                uint8_t  reserved;
Packit Service 584ef9
                uint8_t  flags;
Packit Service 584ef9
                uint32_t max_results;
Packit Service 584ef9
            } body;
Packit Service 584ef9
        } message;
Packit Service 584ef9
        uint8_t bytes[sizeof(protocol_binary_request_header) + 4];
Packit Service 584ef9
    } protocol_binary_request_rangeop;
Packit Service 584ef9
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rget;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rset;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rsetq;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rappend;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rappendq;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rprepend;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rprependq;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rdelete;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rdeleteq;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rincr;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rincrq;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rdecr;
Packit Service 584ef9
    typedef protocol_binary_request_rangeop protocol_binary_request_rdecrq;
Packit Service 584ef9
Packit Service 584ef9
#ifdef __cplusplus
Packit Service 584ef9
}
Packit Service 584ef9
#endif
Packit Service 584ef9
#endif /* PROTOCOL_BINARY_H */