summaryrefslogtreecommitdiffstats
path: root/mDNSResponder/mDNSMacOSX/BonjourTop/source/bjtypes.h
blob: 59de2732e5e167fa85aee5a01a75f9d1e22fd244 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
//  bjtypes.h
//  TestTB
//
//  Created by Terrin Eager on 4/24/12.
//
//


#ifndef TestTB_bjtypes_h
#define TestTB_bjtypes_h
typedef bool BJ_BOOL;

typedef char BJ_INT8;
typedef unsigned char BJ_UINT8;

typedef short int BJ_INT16;
typedef unsigned short int BJ_UINT16;

typedef  int BJ_INT32;
typedef unsigned  int BJ_UINT32;

typedef  long long BJ_INT64;
typedef unsigned  long long BJ_UINT64;

#define DNS_NAME_OFFSET_MASK 0xc0

#define MAX_FRAME_SIZE 0x2800


enum BJ_COMPARE {BJ_GT,BJ_LT,BJ_EQUAL};

#define PF_GET_UINT8(pBuffer,offset) ( (BJ_UINT8)pBuffer[offset] )
#define PF_GET_UINT16(pBuffer,offset) ((((BJ_UINT16)pBuffer[offset]) << 8) | ((BJ_UINT16)pBuffer[offset+1]))
#define PF_GET_UINT32(pBuffer,offset) ((pBuffer[offset] << 24) | (pBuffer[offset+1] << 16) | (pBuffer[offset+2] << 8) | (pBuffer[offset+3]))


inline void endian_swap(BJ_UINT8& x)
{
    x = (x>>8) |(x<<8);
}

inline void endian_swap(BJ_UINT32& x)
{
    x = (x>>24) |
        ((x<<8) & 0x00FF0000) |
        ((x>>8) & 0x0000FF00) |
        (x<<24);
}


inline void endian_swap(BJ_UINT64& x)
{
    x = (x>>56) |
    ((x<<40) & 0x00FF000000000000) |
    ((x<<24) & 0x0000FF0000000000) |
    ((x<<8)  & 0x000000FF00000000) |
    ((x>>8)  & 0x00000000FF000000) |
    ((x>>24) & 0x0000000000FF0000) |
    ((x>>40) & 0x000000000000FF00) |
    (x<<56);
}

#endif