Commit d97d88e7 authored by Dafydd Harries's avatar Dafydd Harries

mark more parameters as const gchar *

darcs-hash:20070212153359-c9803-1b9267deffbb8b3483d834a1693528941360940d.gz
parent b63dd27c
...@@ -349,8 +349,8 @@ nice_agent_add_remote_candidate ( ...@@ -349,8 +349,8 @@ nice_agent_add_remote_candidate (
guint component_id, guint component_id,
NiceCandidateType type, NiceCandidateType type,
NiceAddress *addr, NiceAddress *addr,
gchar *username, const gchar *username,
gchar *password) const gchar *password)
{ {
/* append to agent->remote_candidates */ /* append to agent->remote_candidates */
...@@ -871,7 +871,7 @@ nice_agent_send ( ...@@ -871,7 +871,7 @@ nice_agent_send (
G_GNUC_UNUSED G_GNUC_UNUSED
guint component_id, guint component_id,
guint len, guint len,
gchar *buf) const gchar *buf)
{ {
Stream *stream; Stream *stream;
Component *component; Component *component;
......
...@@ -60,8 +60,8 @@ nice_agent_add_remote_candidate ( ...@@ -60,8 +60,8 @@ nice_agent_add_remote_candidate (
guint component_id, guint component_id,
NiceCandidateType type, NiceCandidateType type,
NiceAddress *addr, NiceAddress *addr,
gchar *username, const gchar *username,
gchar *password); const gchar *password);
guint guint
nice_agent_recv ( nice_agent_recv (
...@@ -84,7 +84,7 @@ nice_agent_send ( ...@@ -84,7 +84,7 @@ nice_agent_send (
guint stream_id, guint stream_id,
guint component_id, guint component_id,
guint len, guint len,
gchar *buf); const gchar *buf);
const GSList * const GSList *
nice_agent_get_local_candidates ( nice_agent_get_local_candidates (
......
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