~ubuntu-branches/debian/squeeze/libnice/squeeze

« back to all changes in this revision

Viewing changes to stun/stun5389.h

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2009-01-04 17:45:34 UTC
  • Revision ID: james.westby@ubuntu.com-20090104174534-dh5u1pfonumqa99c
Tags: upstream-0.0.4
Import upstream version 0.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the Nice GLib ICE library.
 
3
 *
 
4
 * (C) 2006, 2007 Collabora Ltd.
 
5
 *  Contact: Dafydd Harries
 
6
 * (C) 2006, 2007 Nokia Corporation. All rights reserved.
 
7
 *  Contact: Rémi Denis-Courmont
 
8
 *
 
9
 * The contents of this file are subject to the Mozilla Public License Version
 
10
 * 1.1 (the "License"); you may not use this file except in compliance with
 
11
 * the License. You may obtain a copy of the License at
 
12
 * http://www.mozilla.org/MPL/
 
13
 *
 
14
 * Software distributed under the License is distributed on an "AS IS" basis,
 
15
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
16
 * for the specific language governing rights and limitations under the
 
17
 * License.
 
18
 *
 
19
 * The Original Code is the Nice GLib ICE library.
 
20
 *
 
21
 * The Initial Developers of the Original Code are Collabora Ltd and Nokia
 
22
 * Corporation. All Rights Reserved.
 
23
 *
 
24
 * Contributors:
 
25
 *   Rémi Denis-Courmont, Nokia
 
26
 *
 
27
 * Alternatively, the contents of this file may be used under the terms of the
 
28
 * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
 
29
 * case the provisions of LGPL are applicable instead of those above. If you
 
30
 * wish to allow use of your version of this file only under the terms of the
 
31
 * LGPL and not to allow others to use your version of this file under the
 
32
 * MPL, indicate your decision by deleting the provisions above and replace
 
33
 * them with the notice and other provisions required by the LGPL. If you do
 
34
 * not delete the provisions above, a recipient may use your version of this
 
35
 * file under either the MPL or the LGPL.
 
36
 */
 
37
 
 
38
 
 
39
#ifndef _STUN_5389_H
 
40
#define _STUN_5389_H
 
41
 
 
42
 
 
43
#ifdef _WIN32
 
44
#include "win32_common.h"
 
45
#else
 
46
# include <stdint.h>
 
47
# include <stdbool.h>
 
48
#endif
 
49
# include <sys/types.h>
 
50
 
 
51
 
 
52
/**
 
53
 * Computes the FINGERPRINT checksum of a STUN message.
 
54
 * @param msg pointer to the STUN message
 
55
 * @param len size of the message from header (inclusive) and up to
 
56
 *            FINGERPRINT attribute (inclusive)
 
57
 *
 
58
 * @return fingerprint value in <b>host</b> byte order.
 
59
 */
 
60
uint32_t stun_fingerprint (const uint8_t *msg, size_t len);
 
61
 
 
62
bool stun_has_cookie (const StunMessage *msg);
 
63
 
 
64
int stun_message_append_software (StunMessage *msg);
 
65
 
 
66
 
 
67
#endif /* _STUN_5389_H */
 
68