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
b63dd27c
Commit
b63dd27c
authored
Feb 12, 2007
by
Dafydd Harries
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mark more functions as static
darcs-hash:20070212152526-c9803-971550117da7e1790aeaf569730e7f3070beb1c6.gz
parent
eb115b0d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
agent/candidate.c
agent/candidate.c
+1
-1
agent/test-poll.c
agent/test-poll.c
+1
-1
agent/test-send.c
agent/test-send.c
+1
-1
stun/stun-server.c
stun/stun-server.c
+1
-1
stun/test-attribute-pack.c
stun/test-attribute-pack.c
+2
-2
No files found.
agent/candidate.c
View file @
b63dd27c
...
...
@@ -48,7 +48,7 @@ nice_candidate_jingle_priority (NiceCandidate *candidate)
/* ICE-13 §4.1.2; returns number between 1 and 0x7effffff */
G_GNUC_CONST
guint32
static
guint32
_candidate_ice_priority
(
// must be ∈ (0, 126) (max 2^7 - 2)
guint
type_preference
,
...
...
agent/test-poll.c
View file @
b63dd27c
...
...
@@ -7,7 +7,7 @@
static
gboolean
cb_called
=
FALSE
;
void
static
void
handle_recv
(
NiceAgent
*
agent
,
guint
stream_id
,
...
...
agent/test-send.c
View file @
b63dd27c
...
...
@@ -6,7 +6,7 @@
#include "udp-fake.h"
#include "random-glib.h"
void
static
void
send_connectivity_check
(
NiceAgent
*
agent
,
NiceUDPSocketFactory
*
factory
,
...
...
stun/stun-server.c
View file @
b63dd27c
...
...
@@ -11,7 +11,7 @@
const
guint
port
=
3478
;
guint
static
guint
handle_packet
(
struct
sockaddr_in
*
from
,
guint
packet_len
,
...
...
stun/test-attribute-pack.c
View file @
b63dd27c
...
...
@@ -3,7 +3,7 @@
#include "stun.h"
void
static
void
test_pack_mapped_address
(
void
)
{
StunAttribute
*
attr
=
stun_attribute_mapped_address_new
(
0x02030405
,
2345
);
...
...
@@ -26,7 +26,7 @@ test_pack_mapped_address (void)
stun_attribute_free
(
attr
);
}
void
static
void
test_pack_username
(
void
)
{
StunAttribute
*
attr
;
...
...
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