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
f5af7205
Commit
f5af7205
authored
May 16, 2008
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A bit of file shuffling
parent
d3144956
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
34 additions
and
17 deletions
+34
-17
configure.ac
configure.ac
+1
-0
stun/Makefile.am
stun/Makefile.am
+4
-11
stun/tests/check-bind.sh
stun/tests/check-bind.sh
+1
-1
stun/tests/test-bind.c
stun/tests/test-bind.c
+1
-1
stun/tests/test-conncheck.c
stun/tests/test-conncheck.c
+1
-1
stun/usages/bind.c
stun/usages/bind.c
+0
-0
stun/usages/bind.h
stun/usages/bind.h
+0
-0
stun/usages/stun-ice.c
stun/usages/stun-ice.c
+0
-0
stun/usages/stun-ice.h
stun/usages/stun-ice.h
+1
-1
stun/utils/Makefile.am
stun/utils/Makefile.am
+23
-0
stun/utils/stunbdc.c
stun/utils/stunbdc.c
+1
-1
stun/utils/stund.c
stun/utils/stund.c
+1
-1
stun/utils/stund.h
stun/utils/stund.h
+0
-0
No files found.
configure.ac
View file @
f5af7205
...
@@ -11,6 +11,7 @@ AC_CONFIG_FILES([
...
@@ -11,6 +11,7 @@ AC_CONFIG_FILES([
tests/Makefile
tests/Makefile
stun/Makefile
stun/Makefile
stun/tests/Makefile
stun/tests/Makefile
stun/utils/Makefile
local/Makefile
local/Makefile
udp/Makefile
udp/Makefile
nice/Makefile
nice/Makefile
...
...
stun/Makefile.am
View file @
f5af7205
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
#
#
# Licensed under MPL 1.1/LGPL 2.1. See file COPYING.
# Licensed under MPL 1.1/LGPL 2.1. See file COPYING.
SUBDIRS
=
.
tests
SUBDIRS
=
.
utils
tests
include
$(top_srcdir)/common.mk
include
$(top_srcdir)/common.mk
...
@@ -25,17 +25,10 @@ libstun_la_SOURCES = \
...
@@ -25,17 +25,10 @@ libstun_la_SOURCES = \
unknown.c
\
unknown.c
\
crc32.c hmac.c
\
crc32.c hmac.c
\
timer.h timer.c trans.h trans.c
\
timer.h timer.c trans.h trans.c
\
bind.h bind.c
\
usages/stun-ice.c usages/stun-ice.h
\
stun-ice.h stun-ice.c
usages/bind.c usages/bind.h
libstun_la_LIBADD
=
$(OPENSSL_LIBS)
$(LIBRT)
bin_PROGRAMS
=
stund stunbdc
check_PROGRAMS
=
stund
stund_SOURCES
=
stund.c stund.h
libstun_la_LIBADD
=
$(OPENSSL_LIBS)
$(LIBRT)
stund_LDADD
=
libstun.la
-lpthread
stunbdc_LDADD
=
libstun.la
unknown.c
:
stun-msg.h build-unknown.sh
unknown.c
:
stun-msg.h build-unknown.sh
rm
-f
unknown.c
rm
-f
unknown.c
...
...
stun/tests/check-bind.sh
View file @
f5af7205
#! /bin/sh
#! /bin/sh
STUNC
=
../stunbdc
STUNC
=
../stunbdc
STUND
=
../stund
STUND
=
../
utils/
stund
set
-xe
set
-xe
...
...
stun/tests/test-bind.c
View file @
f5af7205
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
#include <sys/types.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/socket.h>
#include "stun/bind.h"
#include "stun/
usages/
bind.h"
#include "stun/stun-msg.h"
#include "stun/stun-msg.h"
#include <stdlib.h>
#include <stdlib.h>
...
...
stun/tests/test-conncheck.c
View file @
f5af7205
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
#include <sys/types.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/socket.h>
#include "stun/stun-ice.h"
#include "stun/
usages/
stun-ice.h"
#include "stun/stun-msg.h"
#include "stun/stun-msg.h"
#include <stdlib.h>
#include <stdlib.h>
...
...
stun/bind.c
→
stun/
usages/
bind.c
View file @
f5af7205
File moved
stun/bind.h
→
stun/
usages/
bind.h
View file @
f5af7205
File moved
stun/stun-ice.c
→
stun/
usages/
stun-ice.c
View file @
f5af7205
File moved
stun/stun-ice.h
→
stun/
usages/
stun-ice.h
View file @
f5af7205
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
* @brief STUN/ICE connectivity checks
* @brief STUN/ICE connectivity checks
*/
*/
# include "stun/bind.h"
# include "stun/
usages/
bind.h"
# ifdef __cplusplus
# ifdef __cplusplus
extern
"C"
{
extern
"C"
{
...
...
stun/utils/Makefile.am
0 → 100644
View file @
f5af7205
#
# Makefile.am for the Nice Glib ICE library
#
# (C) 2006, 2007 Collabora Ltd.
# (C) 2006, 2007 Nokia Corporation. All rights reserved.
#
# Licensed under MPL 1.1/LGPL 2.1. See file COPYING.
#
include
$(top_srcdir)/common.mk
AM_CFLAGS
=
-std
=
gnu99
AM_CPPFLAGS
=
-I
$(top_srcdir)
bin_PROGRAMS
=
stunbdc stund
check_PROGRAMS
=
stund
stund_SOURCES
=
stund.c stund.h
stund_LDADD
=
../libstun.la
-lpthread
stunbdc_LDADD
=
../libstun.la
stun/stunbdc.c
→
stun/
utils/
stunbdc.c
View file @
f5af7205
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
#include <sys/types.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/socket.h>
#include "stun/bind.h"
#include "stun/
usages/
bind.h"
#include <unistd.h>
#include <unistd.h>
#include <getopt.h>
#include <getopt.h>
...
...
stun/stund.c
→
stun/
utils/
stund.c
View file @
f5af7205
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
/** Default port for STUN binding discovery */
/** Default port for STUN binding discovery */
#define IPPORT_STUN 3478
#define IPPORT_STUN 3478
#include "stun-msg.h"
#include "stun
/stun
-msg.h"
#include "stund.h"
#include "stund.h"
/**
/**
...
...
stun/stund.h
→
stun/
utils/
stund.h
View file @
f5af7205
File moved
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