1139721Semax/*
2139721Semax * uuid.c
3139721Semax *
4139721Semax * Copyright (c) 2005 Maksim Yevmenkin <m_evmenkin@yahoo.com>
5139721Semax * All rights reserved.
6139721Semax *
7139721Semax * Redistribution and use in source and binary forms, with or without
8139721Semax * modification, are permitted provided that the following conditions
9139721Semax * are met:
10139721Semax * 1. Redistributions of source code must retain the above copyright
11139721Semax *    notice, this list of conditions and the following disclaimer.
12139721Semax * 2. Redistributions in binary form must reproduce the above copyright
13139721Semax *    notice, this list of conditions and the following disclaimer in the
14139721Semax *    documentation and/or other materials provided with the distribution.
15139721Semax *
16139721Semax * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17139721Semax * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18139721Semax * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19139721Semax * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20139721Semax * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21139721Semax * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22139721Semax * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23139721Semax * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24139721Semax * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25139721Semax * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26139721Semax * SUCH DAMAGE.
27139721Semax *
28139721Semax * $Id: uuid.c,v 1.1 2004/12/09 18:20:26 max Exp $
29139721Semax * $FreeBSD$
30139721Semax */
31139721Semax
32139721Semax#include <bluetooth.h>
33139721Semax#include <sdp.h>
34139721Semax#include <uuid.h>
35139721Semax#include "uuid-private.h"
36139721Semax
37139721Semaxuint128_t	uuid_base = {
38139721Semax	.b = {
39139721Semax		0x00, 0x00, 0x00, 0x00,
40139721Semax		0x00, 0x00,
41139721Semax		0x10, 0x00,
42139721Semax		0x80, 0x00,
43139721Semax		0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb
44139721Semax	}
45139721Semax};
46139721Semax
47139721Semaxuint128_t	uuid_public_browse_group = {
48139721Semax	.b  = {
49139721Semax		0x00, 0x00, 0x10, 0x02,
50139721Semax		0x00, 0x00,
51139721Semax		0x10, 0x00,
52139721Semax		0x80, 0x00,
53139721Semax		0x00, 0x80, 0x5f, 0x9b, 0x34, 0xfb
54139721Semax	}
55139721Semax};
56139721Semax
57