Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
32be0c07
Commit
32be0c07
authored
Jan 13, 2010
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix copyright headers for all files
parent
346672b0
Changes
69
Hide whitespace changes
Inline
Side-by-side
Showing
69 changed files
with
274 additions
and
170 deletions
+274
-170
agent/address.c
agent/address.c
+4
-3
agent/address.h
agent/address.h
+5
-3
agent/agent-priv.h
agent/agent-priv.h
+4
-3
agent/agent.c
agent/agent.c
+4
-3
agent/agent.h
agent/agent.h
+4
-3
agent/candidate.c
agent/candidate.c
+4
-3
agent/candidate.h
agent/candidate.h
+4
-3
agent/component.c
agent/component.c
+4
-3
agent/component.h
agent/component.h
+4
-3
agent/conncheck.c
agent/conncheck.c
+4
-3
agent/conncheck.h
agent/conncheck.h
+4
-3
agent/debug.c
agent/debug.c
+1
-0
agent/debug.h
agent/debug.h
+1
-0
agent/discovery.c
agent/discovery.c
+4
-1
agent/discovery.h
agent/discovery.h
+4
-1
agent/interfaces.c
agent/interfaces.c
+1
-0
agent/interfaces.h
agent/interfaces.h
+3
-0
agent/pseudotcp.c
agent/pseudotcp.c
+0
-1
agent/pseudotcp.h
agent/pseudotcp.h
+0
-1
agent/stream.c
agent/stream.c
+4
-3
agent/stream.h
agent/stream.h
+5
-3
nice/nice.h
nice/nice.h
+4
-3
random/random-glib.c
random/random-glib.c
+4
-2
random/random-glib.h
random/random-glib.h
+2
-2
random/random.c
random/random.c
+3
-2
random/random.h
random/random.h
+2
-2
random/test.c
random/test.c
+3
-2
socket/http.h
socket/http.h
+4
-5
socket/pseudossl.c
socket/pseudossl.c
+4
-9
socket/pseudossl.h
socket/pseudossl.h
+4
-5
socket/socket.c
socket/socket.c
+4
-5
socket/socket.h
socket/socket.h
+4
-5
socket/tcp-bsd.c
socket/tcp-bsd.c
+4
-9
socket/tcp-bsd.h
socket/tcp-bsd.h
+4
-5
socket/tcp-turn.c
socket/tcp-turn.c
+4
-9
socket/tcp-turn.h
socket/tcp-turn.h
+4
-5
socket/turn.c
socket/turn.c
+1
-4
socket/turn.h
socket/turn.h
+1
-2
socket/udp-bsd.c
socket/udp-bsd.c
+4
-5
socket/udp-bsd.h
socket/udp-bsd.h
+4
-3
stun/constants.h
stun/constants.h
+3
-1
stun/debug.c
stun/debug.c
+3
-2
stun/debug.h
stun/debug.h
+3
-2
stun/rand.c
stun/rand.c
+1
-1
stun/rand.h
stun/rand.h
+4
-1
stun/stun5389.c
stun/stun5389.c
+3
-4
stun/stunagent.c
stun/stunagent.c
+4
-3
stun/stunagent.h
stun/stunagent.h
+4
-2
stun/stuncrc32.c
stun/stuncrc32.c
+5
-1
stun/stuncrc32.h
stun/stuncrc32.h
+4
-4
stun/stunhmac.c
stun/stunhmac.c
+4
-1
stun/stunhmac.h
stun/stunhmac.h
+3
-1
stun/stunmessage.c
stun/stunmessage.c
+4
-1
stun/stunmessage.h
stun/stunmessage.h
+6
-2
stun/tools/stunbdc.c
stun/tools/stunbdc.c
+4
-1
stun/tools/stund.c
stun/tools/stund.c
+4
-1
stun/tools/stund.h
stun/tools/stund.h
+4
-1
stun/usages/bind.c
stun/usages/bind.c
+4
-1
stun/usages/bind.h
stun/usages/bind.h
+4
-1
stun/usages/ice.c
stun/usages/ice.c
+4
-1
stun/usages/ice.h
stun/usages/ice.h
+4
-1
stun/usages/timer.c
stun/usages/timer.c
+4
-1
stun/usages/timer.h
stun/usages/timer.h
+4
-1
stun/usages/turn.c
stun/usages/turn.c
+4
-1
stun/usages/turn.h
stun/usages/turn.h
+4
-1
stun/utils.c
stun/utils.c
+6
-2
stun/utils.h
stun/utils.h
+4
-3
stun/win32_common.h
stun/win32_common.h
+37
-0
tests/test-pseudotcp.c
tests/test-pseudotcp.c
+0
-1
No files found.
agent/address.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/address.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -22,7 +22,9 @@
...
@@ -22,7 +22,9 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Kai Vehmanen
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
agent/agent-priv.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/agent.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2010
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2010
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/agent.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2010
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2010
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/candidate.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/candidate.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/component.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/component.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2010
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2010
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/conncheck.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
* Youness Alaoui, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/conncheck.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/debug.c
View file @
32be0c07
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Collabora Ltd.
* (C) 2008 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2008 Nokia Corporation. All rights reserved.
* (C) 2008 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
...
agent/debug.h
View file @
32be0c07
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Collabora Ltd.
* (C) 2008 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2008 Nokia Corporation. All rights reserved.
* (C) 2008 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
...
agent/discovery.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/discovery.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
agent/interfaces.c
View file @
32be0c07
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
*
*
* Copyright (C) 2006 Youness Alaoui <kakaroto@kakaroto.homelinux.net>
* Copyright (C) 2006 Youness Alaoui <kakaroto@kakaroto.homelinux.net>
* Copyright (C) 2007 Collabora, Nokia
* Copyright (C) 2007 Collabora, Nokia
* Contact: Youness Alaoui
* Copyright (C) 2008 Haakon Sporsheim <haakon.sporsheim@tandberg.com>
* Copyright (C) 2008 Haakon Sporsheim <haakon.sporsheim@tandberg.com>
* @author: Youness Alaoui <kakaroto@kakaroto.homelinux.net>
* @author: Youness Alaoui <kakaroto@kakaroto.homelinux.net>
*
*
...
...
agent/interfaces.h
View file @
32be0c07
...
@@ -3,6 +3,9 @@
...
@@ -3,6 +3,9 @@
*
*
* Farsight Helper functions
* Farsight Helper functions
* Copyright (C) 2006 Youness Alaoui <kakaroto@kakaroto.homelinux.net>
* Copyright (C) 2006 Youness Alaoui <kakaroto@kakaroto.homelinux.net>
* Copyright (C) 2008-2009 Collabora, Nokia
* Contact: Youness Alaoui
* Copyright (C) 2008-2009 Nokia Corporation. All rights reserved.
*
*
* This library is free software; you can redistribute it and/or
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* modify it under the terms of the GNU Lesser General Public
...
...
agent/pseudotcp.c
View file @
32be0c07
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
*
*
* (C) 2010 Collabora Ltd.
* (C) 2010 Collabora Ltd.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 20010 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
...
agent/pseudotcp.h
View file @
32be0c07
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
*
*
* (C) 2010 Collabora Ltd.
* (C) 2010 Collabora Ltd.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 20010 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
...
agent/stream.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
agent/stream.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2010
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2010
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -23,6 +24,7 @@
...
@@ -23,6 +24,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
nice/nice.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
random/random-glib.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2008
Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Dafydd Harries
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2008
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,8 @@
...
@@ -23,6 +23,8 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
random/random-glib.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
,
2007 Collabora Ltd.
* (C) 2006
-
2007 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Dafydd Harries
* (C) 2006
,
2007 Nokia Corporation. All rights reserved.
* (C) 2006
-
2007 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
...
random/random.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2008
Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Dafydd Harries
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2008
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen, Nokia
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
random/random.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
,
2007 Collabora Ltd.
* (C) 2006
-
2007 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Dafydd Harries
* (C) 2006
,
2007 Nokia Corporation. All rights reserved.
* (C) 2006
-
2007 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
...
random/test.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
,
2007 Collabora Ltd.
* (C) 2006
-
2007 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Dafydd Harries
* (C) 2006
,
2007 Nokia Corporation. All rights reserved.
* (C) 2006
-
2007 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/http.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006, 2007 Collabora Ltd.
* (C) 2008 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* (C) 2008 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -22,7 +21,7 @@
...
@@ -22,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Dafydd Harries
, Collabora Ltd.
*
Youness Alaoui
, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/pseudossl.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006-2008 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* Contact: Olivier Crete
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -23,10 +21,7 @@
...
@@ -23,10 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Olivier Crete, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Kai Vehmanen
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/pseudossl.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006, 2007 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -22,7 +21,7 @@
...
@@ -22,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Dafydd Harries
, Collabora Ltd.
*
Youness Alaoui
, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/socket.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006, 2007 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -22,7 +21,7 @@
...
@@ -22,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Dafydd Harries
, Collabora Ltd.
*
Youness Alaoui
, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/socket.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006, 2007 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -22,7 +21,7 @@
...
@@ -22,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Dafydd Harries
, Collabora Ltd.
*
Youness Alaoui
, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/tcp-bsd.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006-2008 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* Contact: Olivier Crete
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -23,10 +21,7 @@
...
@@ -23,10 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Olivier Crete, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Kai Vehmanen
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/tcp-bsd.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006, 2007 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -22,7 +21,7 @@
...
@@ -22,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Dafydd Harries
, Collabora Ltd.
*
Youness Alaoui
, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/tcp-turn.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006-2008 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* Contact: Olivier Crete
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -23,10 +21,7 @@
...
@@ -23,10 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Olivier Crete, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Kai Vehmanen
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/tcp-turn.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006, 2007 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* Contact: Dafydd Harries
* Contact: Youness Alaoui
* (C) 2006, 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -22,7 +21,7 @@
...
@@ -22,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Dafydd Harries
, Collabora Ltd.
*
Youness Alaoui
, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/turn.c
View file @
32be0c07
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Collabora Ltd.
* (C) 2008 Collabora Ltd.
* (C) 2008 Nokia Corporation
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2008 Nokia Corporation
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -21,10 +21,7 @@
...
@@ -21,10 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Kai Vehmanen
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/turn.h
View file @
32be0c07
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Collabora Ltd.
* (C) 2008 Collabora Ltd.
* (C) 2008 Nokia Corporation
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2008 Nokia Corporation
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -21,7 +21,6 @@
...
@@ -21,7 +21,6 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
socket/udp-bsd.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,8 +23,7 @@
...
@@ -23,8 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Youness Alaoui, Collabora Ltd.
* Kai Vehmanen
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
socket/udp-bsd.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2006
, 2007
Collabora Ltd.
* (C) 2006
-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
, 2007
Nokia Corporation. All rights reserved.
* (C) 2006
-2009
Nokia Corporation. All rights reserved.
* Contact: Kai Vehmanen
* Contact: Kai Vehmanen
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
*
*
* Contributors:
* Contributors:
* Dafydd Harries, Collabora Ltd.
* Dafydd Harries, Collabora Ltd.
* Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/constants.h
View file @
32be0c07
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Collabora Ltd.
* (C) 2008 Collabora Ltd.
* (C) 2008 Nokia Corporation. All rights reserved.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2008 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/debug.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2007 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,7 +21,7 @@
...
@@ -20,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Rémi Denis-Courmont, Nokia
*
Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/debug.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2007 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,7 +21,7 @@
...
@@ -20,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Rémi Denis-Courmont, Nokia
*
Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/rand.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Nokia Corporation. All rights reserved.
* (C) 2008 Collabora Ltd. All rights reserved.
* (C) 2008 Collabora Ltd. All rights reserved.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2008 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
...
stun/rand.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Nokia Corporation. All rights reserved.
* (C) 2008 Collabora Ltd. All rights reserved.
* (C) 2008 Collabora Ltd. All rights reserved.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2008 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,6 +20,9 @@
...
@@ -20,6 +20,9 @@
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Youness Alaoui, Collabora Ltd.
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* case the provisions of LGPL are applicable instead of those above. If you
* case the provisions of LGPL are applicable instead of those above. If you
...
...
stun/stun5389.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2007 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* COPYRIGHT (C) 1986 Gary S. Brown
* See documentation of the function crc32() below.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -22,7 +21,7 @@
...
@@ -22,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Rémi Denis-Courmont, Nokia
*
Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/stunagent.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Rémi Denis-Courmont
* Contact: Youness Alaoui
* (C) 2008-2009 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,7 +21,7 @@
...
@@ -20,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Rémi Denis-Courmont, Nokia
*
Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/stunagent.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* (C) 2008 Nokia Corporation. All rights reserved.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2008-2009 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/stuncrc32.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
* COPYRIGHT (C) 1986 Gary S. Brown
* COPYRIGHT (C) 1986 Gary S. Brown
* See documentation of the function crc32() below.
* See documentation of the function crc32() below.
...
@@ -22,7 +24,9 @@
...
@@ -22,7 +24,9 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
* Gary S. Brown
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/stuncrc32.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 200
6, 2007
Collabora Ltd.
* (C) 200
8-2009
Collabora Ltd.
* Contact:
Dafydd Harries
* Contact:
Youness Alaoui
* (C) 2006
,
2007 Nokia Corporation. All rights reserved.
* (C) 2006
-
2007 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Rémi Denis-Courmont, Nokia
*
Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/stunhmac.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/stunhmac.h
View file @
32be0c07
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Collabora Ltd.
* (C) 2008 Collabora Ltd.
* (C) 2008 Nokia Corporation. All rights reserved.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2008 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,6 +20,8 @@
...
@@ -20,6 +20,8 @@
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/stunmessage.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/stunmessage.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2008 Collabora Ltd.
* (C) 2008-2009 Collabora Ltd.
* (C) 2008 Nokia Corporation. All rights reserved.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2008-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,6 +21,9 @@
...
@@ -20,6 +21,9 @@
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/tools/stunbdc.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/tools/stund.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/tools/stund.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/usages/bind.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/usages/bind.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/usages/ice.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/usages/ice.h
View file @
32be0c07
...
@@ -2,7 +2,9 @@
...
@@ -2,7 +2,9 @@
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -21,6 +23,7 @@
...
@@ -21,6 +23,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/usages/timer.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/usages/timer.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/usages/turn.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/usages/turn.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,6 +22,7 @@
...
@@ -20,6 +22,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Rémi Denis-Courmont, Nokia
* Rémi Denis-Courmont, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
...
...
stun/utils.c
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2007-2009 Nokia Corporation. All rights reserved.
* Contact: Rémi Denis-Courmont
* Contact: Rémi Denis-Courmont
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
...
@@ -20,7 +22,9 @@
...
@@ -20,7 +22,9 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
* Rémi Denis-Courmont, Nokia
* Youness Alaoui, Collabora Ltd.
* Olivier Crete, Collabora Ltd.
* Kai Vehmanen, Nokia
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/utils.h
View file @
32be0c07
/*
/*
* This file is part of the Nice GLib ICE library.
* This file is part of the Nice GLib ICE library.
*
*
* (C) 2007 Nokia Corporation. All rights reserved.
* (C) 2008-2009 Collabora Ltd.
* Contact: Rémi Denis-Courmont
* Contact: Youness Alaoui
* (C) 2008-2009 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
@@ -20,7 +21,7 @@
...
@@ -20,7 +21,7 @@
* Corporation. All Rights Reserved.
* Corporation. All Rights Reserved.
*
*
* Contributors:
* Contributors:
*
Rémi Denis-Courmont, Nokia
*
Youness Alaoui, Collabora Ltd.
*
*
* Alternatively, the contents of this file may be used under the terms of the
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
...
...
stun/win32_common.h
View file @
32be0c07
/*
* This file is part of the Nice GLib ICE library.
*
* (C) 2008-2009 Collabora Ltd.
* Contact: Youness Alaoui
* (C) 2008-2009 Nokia Corporation. All rights reserved.
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the Nice GLib ICE library.
*
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
* Corporation. All Rights Reserved.
*
* Contributors:
* Youness Alaoui, Collabora Ltd.
* Danny Smith
*
* Alternatively, the contents of this file may be used under the terms of the
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
* case the provisions of LGPL are applicable instead of those above. If you
* wish to allow use of your version of this file only under the terms of the
* LGPL and not to allow others to use your version of this file under the
* MPL, indicate your decision by deleting the provisions above and replace
* them with the notice and other provisions required by the LGPL. If you do
* not delete the provisions above, a recipient may use your version of this
* file under either the MPL or the LGPL.
*/
/* ISO C9x 7.18 Integer types <stdint.h>
/* ISO C9x 7.18 Integer types <stdint.h>
* Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794)
* Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794)
*
*
...
...
tests/test-pseudotcp.c
View file @
32be0c07
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
*
*
* (C) 2010 Collabora Ltd.
* (C) 2010 Collabora Ltd.
* Contact: Youness Alaoui
* Contact: Youness Alaoui
* (C) 2010 Nokia Corporation. All rights reserved.
*
*
* The contents of this file are subject to the Mozilla Public License Version
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* 1.1 (the "License"); you may not use this file except in compliance with
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment