Commit b63dd27c authored by Dafydd Harries's avatar Dafydd Harries

mark more functions as static

darcs-hash:20070212152526-c9803-971550117da7e1790aeaf569730e7f3070beb1c6.gz
parent eb115b0d
...@@ -48,7 +48,7 @@ nice_candidate_jingle_priority (NiceCandidate *candidate) ...@@ -48,7 +48,7 @@ nice_candidate_jingle_priority (NiceCandidate *candidate)
/* ICE-13 §4.1.2; returns number between 1 and 0x7effffff */ /* ICE-13 §4.1.2; returns number between 1 and 0x7effffff */
G_GNUC_CONST G_GNUC_CONST
guint32 static guint32
_candidate_ice_priority ( _candidate_ice_priority (
// must be ∈ (0, 126) (max 2^7 - 2) // must be ∈ (0, 126) (max 2^7 - 2)
guint type_preference, guint type_preference,
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
static gboolean cb_called = FALSE; static gboolean cb_called = FALSE;
void static void
handle_recv ( handle_recv (
NiceAgent *agent, NiceAgent *agent,
guint stream_id, guint stream_id,
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include "udp-fake.h" #include "udp-fake.h"
#include "random-glib.h" #include "random-glib.h"
void static void
send_connectivity_check ( send_connectivity_check (
NiceAgent *agent, NiceAgent *agent,
NiceUDPSocketFactory *factory, NiceUDPSocketFactory *factory,
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
const guint port = 3478; const guint port = 3478;
guint static guint
handle_packet ( handle_packet (
struct sockaddr_in *from, struct sockaddr_in *from,
guint packet_len, guint packet_len,
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
#include "stun.h" #include "stun.h"
void static void
test_pack_mapped_address (void) test_pack_mapped_address (void)
{ {
StunAttribute *attr = stun_attribute_mapped_address_new (0x02030405, 2345); StunAttribute *attr = stun_attribute_mapped_address_new (0x02030405, 2345);
...@@ -26,7 +26,7 @@ test_pack_mapped_address (void) ...@@ -26,7 +26,7 @@ test_pack_mapped_address (void)
stun_attribute_free (attr); stun_attribute_free (attr);
} }
void static void
test_pack_username (void) test_pack_username (void)
{ {
StunAttribute *attr; StunAttribute *attr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment