Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
freediameter
Commits
8e8a6a0b
Commit
8e8a6a0b
authored
Oct 18, 2011
by
Sebastien Decugis
Browse files
Fix a few compilation warning, some are still remaining
parent
802dd772
Changes
3
Hide whitespace changes
Inline
Side-by-side
libfdcore/p_cnx.c
View file @
8e8a6a0b
...
@@ -250,7 +250,7 @@ static void * connect_thr(void * arg)
...
@@ -250,7 +250,7 @@ static void * connect_thr(void * arg)
break
;
break
;
#ifndef DISABLE_SCTP
#ifndef DISABLE_SCTP
case
IPPROTO_SCTP
:
case
IPPROTO_SCTP
:
cnx
=
fd_cnx_cli_connect_sctp
((
peer
->
p_hdr
.
info
.
config
.
pic_flags
.
pro3
==
PI_P3_IP
)
?:
fd_g_config
->
cnf_flags
.
no_ip6
,
cnx
=
fd_cnx_cli_connect_sctp
((
peer
->
p_hdr
.
info
.
config
.
pic_flags
.
pro3
==
PI_P3_IP
)
?
1
:
fd_g_config
->
cnf_flags
.
no_ip6
,
nc
->
port
,
&
peer
->
p_hdr
.
info
.
pi_endpoints
);
nc
->
port
,
&
peer
->
p_hdr
.
info
.
pi_endpoints
);
break
;
break
;
#endif
/* DISABLE_SCTP */
#endif
/* DISABLE_SCTP */
...
...
libfdproto/messages.c
View file @
8e8a6a0b
...
@@ -712,7 +712,6 @@ public:
...
@@ -712,7 +712,6 @@ public:
static
void
obj_dump_avp
(
struct
avp
*
avp
,
int
indent
,
FILE
*
fstr
)
static
void
obj_dump_avp
(
struct
avp
*
avp
,
int
indent
,
FILE
*
fstr
)
{
{
int
ret
=
0
;
int
ret
=
0
;
enum
dict_avp_basetype
type
=
-
1
;
if
(
!
CHECK_AVP
(
avp
))
{
if
(
!
CHECK_AVP
(
avp
))
{
fd_log_debug_fstr
(
fstr
,
INOBJHDR
"INVALID!
\n
"
,
INOBJHDRVAL
);
fd_log_debug_fstr
(
fstr
,
INOBJHDR
"INVALID!
\n
"
,
INOBJHDRVAL
);
...
@@ -743,7 +742,6 @@ static void obj_dump_avp ( struct avp * avp, int indent, FILE * fstr )
...
@@ -743,7 +742,6 @@ static void obj_dump_avp ( struct avp * avp, int indent, FILE * fstr )
type_base_name
[
dictdata
.
avp_basetype
],
type_base_name
[
dictdata
.
avp_basetype
],
dictdata
.
avp_code
,
dictdata
.
avp_code
,
dictdata
.
avp_name
);
dictdata
.
avp_name
);
type
=
dictdata
.
avp_basetype
;
}
}
public:
public:
fd_log_debug_fstr
(
fstr
,
INOBJHDR
"public: C:%u fl:"
DUMP_AVPFL_str
" L:%d V:%u data:@%p
\n
"
,
INOBJHDRVAL
,
fd_log_debug_fstr
(
fstr
,
INOBJHDR
"public: C:%u fl:"
DUMP_AVPFL_str
" L:%d V:%u data:@%p
\n
"
,
INOBJHDRVAL
,
...
...
libfdproto/msg_log.c
View file @
8e8a6a0b
...
@@ -149,6 +149,7 @@ void fd_msg_log( enum fd_msg_log_cause cause, struct msg * msg, const char * pre
...
@@ -149,6 +149,7 @@ void fd_msg_log( enum fd_msg_log_cause cause, struct msg * msg, const char * pre
case
FD_MSG_LOGTO_FILE
:
case
FD_MSG_LOGTO_FILE
:
TODO
(
"Log to arg file"
);
TODO
(
"Log to arg file"
);
TODO
(
"Log a note to debug stream"
);
TODO
(
"Log a note to debug stream"
);
TRACE_DEBUG
(
INFO
,
"%s"
,
metharg
);
break
;
break
;
case
FD_MSG_LOGTO_DIR
:
case
FD_MSG_LOGTO_DIR
:
TODO
(
"Log to arg directory in a new file"
);
TODO
(
"Log to arg directory in a new file"
);
...
...
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