~ubuntu-branches/ubuntu/lucid/bind9/lucid

« back to all changes in this revision

Viewing changes to lib/bind/port/aix32/include/sys/bitypes.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones, Internet Software Consortium, Inc, InterNIC, LaMont Jones
  • Date: 2009-07-28 22:03:14 UTC
  • mfrom: (1.6.1 upstream) (10.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090728220314-9wztcj047dxvvhdh
Tags: 1:9.6.1.dfsg.P1-1
[Internet Software Consortium, Inc]

* A specially crafted update packet will cause named to exit. 
  CVE-2009-0696, CERT VU#725188.  Closes: #538975

[InterNIC]

* Update db.root hints file.

[LaMont Jones]

* Move default zone definitions from named.conf to named.conf.default-zones.
   Closes: #492308
* use start-stop-daemon if rndc stop fails.  Closes: #536487
* lwresd: pidfile name was wrong in init script.  Closes: #527137

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3
 
 * Copyright (c) 1996,1999 by Internet Software Consortium.
4
 
 *
5
 
 * Permission to use, copy, modify, and distribute this software for any
6
 
 * purpose with or without fee is hereby granted, provided that the above
7
 
 * copyright notice and this permission notice appear in all copies.
8
 
 *
9
 
 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
10
 
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11
 
 * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
12
 
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13
 
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14
 
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
15
 
 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16
 
 */
17
 
 
18
 
#ifndef __BIT_TYPES_DEFINED__
19
 
#define __BIT_TYPES_DEFINED__
20
 
 
21
 
        /*
22
 
         * Basic integral types.  Omit the typedef if
23
 
         * not possible for a machine/compiler combination.
24
 
         */
25
 
        typedef /*signed*/ char            int8_t;
26
 
        typedef unsigned char            u_int8_t;
27
 
        typedef short                     int16_t;
28
 
        typedef unsigned short          u_int16_t;
29
 
        typedef int                       int32_t;
30
 
        typedef unsigned int            u_int32_t;
31
 
 
32
 
# if 0  /* don't fight with these unless you need them */
33
 
        typedef long long                 int64_t;
34
 
        typedef unsigned long long      u_int64_t;
35
 
# endif
36
 
 
37
 
#endif  /* __BIT_TYPES_DEFINED__ */