Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
belle-sip
Commits
3a681b17
Commit
3a681b17
authored
Feb 08, 2013
by
jehan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use listener cb in register tester
parent
991dc9f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
38 deletions
+20
-38
include/belle-sip/Makefile.am
include/belle-sip/Makefile.am
+2
-1
tester/belle_sip_register_tester.c
tester/belle_sip_register_tester.c
+18
-37
No files found.
include/belle-sip/Makefile.am
View file @
3a681b17
...
...
@@ -18,6 +18,7 @@ bellesip_HEADERS=\
auth-helper.h
\
belle-sdp.h
\
belle-sip.h
\
refresher-helper.h
refresher-helper.h
\
defs.h
EXTRA_DIST
=
$(bellesip_HEADERS)
tester/belle_sip_register_tester.c
View file @
3a681b17
...
...
@@ -30,19 +30,19 @@ belle_sip_stack_t * stack;
belle_sip_provider_t
*
prov
;
static
belle_sip_listener_t
*
l
;
static
void
process_dialog_terminated
(
belle_sip_listener_t
*
obj
,
const
belle_sip_dialog_terminated_event_t
*
event
){
static
void
process_dialog_terminated
(
void
*
user_ctx
,
const
belle_sip_dialog_terminated_event_t
*
event
){
belle_sip_message
(
"process_dialog_terminated called"
);
}
static
void
process_io_error
(
belle_sip_listener_t
*
obj
,
const
belle_sip_io_error_event_t
*
event
){
static
void
process_io_error
(
void
*
user_ctx
,
const
belle_sip_io_error_event_t
*
event
){
belle_sip_warning
(
"process_io_error"
);
belle_sip_main_loop_quit
(
belle_sip_stack_get_main_loop
(
stack
));
/*CU_ASSERT(CU_FALSE);*/
}
static
void
process_request_event
(
belle_sip_listener_t
*
obj
,
const
belle_sip_request_event_t
*
event
){
static
void
process_request_event
(
void
*
user_ctx
,
const
belle_sip_request_event_t
*
event
){
belle_sip_message
(
"process_request_event"
);
}
belle_sip_request_t
*
authorized_request
;
static
void
process_response_event
(
belle_sip_listener_t
*
obj
,
const
belle_sip_response_event_t
*
event
){
static
void
process_response_event
(
void
*
user_ctx
,
const
belle_sip_response_event_t
*
event
){
int
status
;
belle_sip_request_t
*
request
;
CU_ASSERT_PTR_NOT_NULL_FATAL
(
belle_sip_response_event_get_response
(
event
));
...
...
@@ -70,49 +70,22 @@ static void process_response_event(belle_sip_listener_t *obj, const belle_sip_re
belle_sip_main_loop_quit
(
belle_sip_stack_get_main_loop
(
stack
));
}
}
static
void
process_timeout
(
belle_sip_listener_t
*
obj
,
const
belle_sip_timeout_event_t
*
event
){
static
void
process_timeout
(
void
*
user_ctx
,
const
belle_sip_timeout_event_t
*
event
){
belle_sip_message
(
"process_timeout"
);
}
static
void
process_transaction_terminated
(
belle_sip_listener_t
*
obj
,
const
belle_sip_transaction_terminated_event_t
*
event
){
static
void
process_transaction_terminated
(
void
*
user_ctx
,
const
belle_sip_transaction_terminated_event_t
*
event
){
belle_sip_message
(
"process_transaction_terminated"
);
}
static
void
process_auth_requested
(
belle_sip_listener_t
*
obj
,
belle_sip_auth_event_t
*
event
){
static
void
process_auth_requested
(
void
*
user_ctx
,
belle_sip_auth_event_t
*
event
){
belle_sip_message
(
"process_auth_requested requested for [%s@%s]"
,
belle_sip_auth_event_get_username
(
event
)
,
belle_sip_auth_event_get_realm
(
event
));
belle_sip_auth_event_set_passwd
(
event
,
"secret"
);
}
/*this would normally go to a .h file*/
struct
test_listener
{
belle_sip_object_t
base
;
void
*
some_context
;
};
typedef
struct
test_listener
test_listener_t
;
BELLE_SIP_DECLARE_TYPES_BEGIN
(
test
,
0x1000
)
BELLE_SIP_TYPE_ID
(
test_listener_t
)
BELLE_SIP_DECLARE_TYPES_END
BELLE_SIP_DECLARE_VPTR
(
test_listener_t
);
/*the following would go to .c file */
BELLE_SIP_IMPLEMENT_INTERFACE_BEGIN
(
test_listener_t
,
belle_sip_listener_t
)
process_dialog_terminated
,
process_io_error
,
process_request_event
,
process_response_event
,
process_timeout
,
process_transaction_terminated
,
process_auth_requested
BELLE_SIP_IMPLEMENT_INTERFACE_END
BELLE_SIP_DECLARE_IMPLEMENTED_INTERFACES_1
(
test_listener_t
,
belle_sip_listener_t
);
BELLE_SIP_INSTANCIATE_VPTR
(
test_listener_t
,
belle_sip_object_t
,
NULL
,
NULL
,
NULL
,
FALSE
);
static
test_listener_t
*
listener
;
belle_sip_listener_callbacks_t
listener_callbacks
;
belle_sip_listener_t
*
listener
;
int
register_init
(
void
)
{
belle_sip_listening_point_t
*
lp
;
...
...
@@ -126,8 +99,16 @@ int register_init(void) {
if
(
lp
)
{
belle_sip_provider_add_listening_point
(
prov
,
lp
);
}
listener
=
belle_sip_object_new
(
test_listener_t
);
listener_callbacks
.
process_dialog_terminated
=
process_dialog_terminated
;
listener_callbacks
.
process_io_error
=
process_io_error
;
listener_callbacks
.
process_request_event
=
process_request_event
;
listener_callbacks
.
process_response_event
=
process_response_event
;
listener_callbacks
.
process_timeout
=
process_timeout
;
listener_callbacks
.
process_transaction_terminated
=
process_transaction_terminated
;
listener_callbacks
.
process_auth_requested
=
process_auth_requested
;
listener_callbacks
.
listener_destroyed
=
NULL
;
listener
=
belle_sip_listener_create_from_callbacks
(
&
listener_callbacks
,
NULL
);
return
0
;
}
int
register_uninit
(
void
)
{
...
...
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