1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
#include "libdrizzle.h"
21
#include <libdrizzle/pack.h>
22
#include <drizzled/korr.h>
25
/* Get the length of next field. Change parameter to point at fieldstart */
26
uint32_t net_field_length(unsigned char **packet)
28
register unsigned char *pos= (unsigned char *)*packet;
32
return (uint32_t) *pos;
42
return (uint32_t) uint2korr(pos+1);
47
return (uint32_t) uint3korr(pos+1);
49
(*packet)+=9; /* Must be 254 when here */
50
return (uint32_t) uint4korr(pos+1);
53
/* The same as above but returns int64_t */
54
uint64_t net_field_length_ll(unsigned char **packet)
56
register unsigned char *pos= *packet;
60
return (uint64_t) *pos;
65
return (uint64_t) NULL_LENGTH;
70
return (uint64_t) uint2korr(pos+1);
75
return (uint64_t) uint3korr(pos+1);
77
(*packet)+=9; /* Must be 254 when here */
78
#ifdef NO_CLIENT_LONGLONG
79
return (uint64_t) uint4korr(pos+1);
81
return (uint64_t) uint8korr(pos+1);
86
Store an integer with simple packing into a output package
90
pkg Store the packed integer here
91
length integers to store
94
This is mostly used to store lengths of strings.
95
We have to cast the result for the LL() becasue of a bug in Forte CC
99
Position in 'pkg' after the packed length
102
unsigned char *net_store_length(unsigned char *packet, uint64_t length)
104
if (length < (uint64_t) 251LL)
106
*packet=(unsigned char) length;
109
/* 251 is reserved for NULL */
110
if (length < (uint64_t) 65536LL)
113
int2store(packet,(uint32_t) length);
116
if (length < (uint64_t) 16777216LL)
119
int3store(packet,(uint32_t) length);
123
int8store(packet,length);