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"
1
/* Copyright (C) 2000-2003 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
#include <my_global.h>
23
19
/* Get the length of next field. Change parameter to point at fieldstart */
24
uint32_t net_field_length(unsigned char **packet)
20
ulong STDCALL net_field_length(uchar **packet)
26
register unsigned char *pos= (unsigned char *)*packet;
22
register uchar *pos= (uchar *)*packet;
30
return (uint32_t) *pos;
40
return (uint32_t) uint2korr(pos+1);
36
return (ulong) uint2korr(pos+1);
45
return (uint32_t) uint3korr(pos+1);
41
return (ulong) uint3korr(pos+1);
47
(*packet)+=9; /* Must be 254 when here */
48
return (uint32_t) uint4korr(pos+1);
43
(*packet)+=9; /* Must be 254 when here */
44
return (ulong) uint4korr(pos+1);
51
47
/* The same as above but returns int64_t */
52
uint64_t net_field_length_ll(unsigned char **packet)
48
uint64_t net_field_length_ll(uchar **packet)
54
register unsigned char *pos= *packet;
50
register uchar *pos= *packet;
73
69
return (uint64_t) uint3korr(pos+1);
75
(*packet)+=9; /* Must be 254 when here */
71
(*packet)+=9; /* Must be 254 when here */
76
72
#ifdef NO_CLIENT_LONGLONG
77
73
return (uint64_t) uint4korr(pos+1);
97
93
Position in 'pkg' after the packed length
100
unsigned char *net_store_length(unsigned char *packet, uint64_t length)
96
uchar *net_store_length(uchar *packet, uint64_t length)
102
98
if (length < (uint64_t) 251LL)
104
*packet=(unsigned char) length;
100
*packet=(uchar) length;
107
103
/* 251 is reserved for NULL */
108
104
if (length < (uint64_t) 65536LL)
111
int2store(packet,(uint32_t) length);
107
int2store(packet,(uint) length);
114
110
if (length < (uint64_t) 16777216LL)
117
int3store(packet,(uint32_t) length);
113
int3store(packet,(ulong) length);