-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathnua.c
More file actions
1218 lines (1081 loc) · 30.5 KB
/
Copy pathnua.c
File metadata and controls
1218 lines (1081 loc) · 30.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* This file is part of the Sofia-SIP package
*
* Copyright (C) 2006 Nokia Corporation.
*
* Contact: Pekka Pessi <pekka.pessi@nokia.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
/**@internal @file nua.c High-Level User Agent Library - "nua" Implementation.
*
* @author Pekka Pessi <Pekka.Pessi@nokia.com>
* @author Kai Vehmanen <Kai.Vehmanen@nokia.com>
* @author Pasi Rinne-Rahkola
*
* @date Created: Wed Feb 14 18:32:58 2001 ppessi
*/
#include "config.h"
#include <sofia-sip/su_tag.h>
#include <sofia-sip/su_tag_class.h>
#include <sofia-sip/su_tagarg.h>
#include <sofia-sip/su_tag_io.h>
#define SU_LOG (nua_log)
#include <sofia-sip/su_debug.h>
#define SU_ROOT_MAGIC_T struct nua_s
#include <sofia-sip/sip_status.h>
#include <sofia-sip/sip_header.h>
#include <sofia-sip/nta.h>
#include <sofia-sip/tport_tag.h>
#include "sofia-sip/nua.h"
#include "sofia-sip/nua_tag.h"
#include "nua_stack.h"
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <assert.h>
/* From AM_INIT/AC_INIT in our "config.h" */
char const nua_version[] = VERSION;
/**Environment variable determining the debug log level for @nua module.
*
* The NUA_DEBUG environment variable is used to determine the debug logging
* level for @nua module. The default level is 3.
*
* @sa <sofia-sip/su_debug.h>, nua_log, SOFIA_DEBUG
*/
extern char const NUA_DEBUG[];
#ifndef SU_DEBUG
#define SU_DEBUG 3
#endif
/**Debug log for @nua module.
*
* The nua_log is the log object used by @nua module. The level of
* #nua_log is set using #NUA_DEBUG environment variable.
*/
su_log_t nua_log[] = { SU_LOG_INIT("nua", "NUA_DEBUG", SU_DEBUG) };
/**Create a @nua agent.
*
* This function creates a Sofia-SIP User Agent stack object (@nua) and
* initializes its parameters by given tagged values.
*
* @param root Pointer to a root object
* @param callback Pointer to event callback function
* @param magic Pointer to callback context
* @param tag, value, ... List of tagged parameters
*
* @retval !=NULL a pointer to a @nua stack object
* @retval NULL upon an error
*
* @par Related tags:
* - NUTAG_PROXY(), giving the URI of the outbound proxy
* (but see also NUTAG_INITIAL_ROUTE()).
* - NUTAG_URL() (and NUTAG_SIPS_URL(), listing URIs describing
* transports)
* - NUTAG_CERTIFICATE_DIR(), specifying the location of the
* root and client/server certificate files
* - NUTAG_SIP_PARSER(), providing customized parser used to
* parse received SIP messages
* - All parameter tags, listed with nua_set_params()
* - All NTATAG_* are passed to NTA documented in <sofia-sip/nta_tag.h>:
* see NTATAG_EXTRA_100(),
* - All tport tags are passed to tport.
* They are documented in <sofia-sip/tport_tag.h>
* - All SOATAG_* are passed to the default SOA (media session) object which
* is created by nua_create() unless NUTAG_MEDIA_ENABLE(0) is included in
* the tag list
* - STUN tags STUNTAG_DOMAIN(), STUNTAG_SERVER().
* STUN is deprecated, however.
*
* @note
* From the @VERSION_1_12_2 all the nua_set_params() tags are processed.
* Previously all nutags except NUTAG_SOA_NAME() and NUTAG_MEDIA_ENABLE()
* were ignored.
*
* @note
* Both the NUTAG_URL() and NUTAG_SIPS_URL() are used to pass arguments to
* nta_agent_add_tport().
*
* @par Events:
* none
*
* @sa nua_shutdown(), nua_destroy(), nua_handle(), nta_agent_create().
*/
nua_t *nua_create(su_root_t *root,
nua_callback_f callback,
nua_magic_t *magic,
tag_type_t tag, tag_value_t value, ...)
{
nua_t *nua = NULL;
enter;
if (callback == NULL)
return (void)(errno = EFAULT), NULL;
if (root == NULL)
return (void)(errno = EFAULT), NULL;
if ((nua = su_home_new(sizeof(*nua)))) {
ta_list ta;
su_home_threadsafe(nua->nua_home);
nua->nua_api_root = root;
ta_start(ta, tag, value);
nua->nua_args = tl_adup(nua->nua_home, ta_args(ta));
su_task_copy(nua->nua_client, su_root_task(root));
/* XXX: where to put this in the nua_server case? */
#if HAVE_SMIME /* Start NRC Boston */
nua->sm = sm_create();
#endif /* End NRC Boston */
#ifndef NUA_SERVER
if (su_clone_start(root,
nua->nua_clone,
nua,
nua_stack_init,
nua_stack_deinit) == SU_SUCCESS) {
su_task_copy(nua->nua_server, su_clone_task(nua->nua_clone));
nua->nua_callback = callback;
nua->nua_magic = magic;
}
else {
su_home_unref(nua->nua_home);
nua = NULL;
}
#endif
ta_end(ta);
}
return nua;
}
/* nua_shutdown() is documented with nua_stack_shutdown() */
void nua_shutdown(nua_t *nua)
{
enter;
if (nua)
nua->nua_shutdown_started = 1;
nua_signal(nua, NULL, NULL, nua_r_shutdown, 0, NULL, TAG_END());
}
/** Destroy the @nua stack.
*
* Before calling nua_destroy() the application
* should call nua_shutdown and wait for successful #nua_r_shutdown event.
* Shuts down and destroys the @nua stack. Ongoing calls, registrations,
* and subscriptions are left as they are.
*
* @param nua Pointer to @nua stack object
*
* @return
* nothing
*
* @par Related tags:
* none
*
* @par Events:
* none
*
* @sa nua_shutdown(), nua_create(), nua_handle_destroy(), nua_handle_unref()
*/
void nua_destroy(nua_t *nua)
{
enter;
if (nua) {
if (!nua->nua_shutdown_final) {
SU_DEBUG_0(("nua_destroy(%p): FATAL: nua_shutdown not completed\n",
(void *)nua));
assert(nua->nua_shutdown);
return;
}
nua->nua_callback = NULL;
su_clone_wait(nua->nua_api_root, nua->nua_clone);
nua_unref(nua);
}
}
void nua_unref(nua_t *nua) {
if (nua) su_home_unref(nua->nua_home);
}
/** Fetch callback context from nua.
*
* @param nua Pointer to @nua stack object
*
* @return Callback context pointer.
*
* @NEW_1_12_4.
*/
nua_magic_t *nua_magic(nua_t *nua)
{
return nua ? nua->nua_magic : NULL;
}
/** Obtain default operation handle of the @nua stack object.
*
* A default operation can be used for operations where the
* ultimate result is not important or can be discarded.
*
* @param nua Pointer to @nua stack object
*
* @retval !=NULL Pointer to @nua operation handle
* @retval NULL No default operation exists
*
* @par Related tags:
* none
*
* @par Events:
* none
*
*/
nua_handle_t *nua_default(nua_t *nua)
{
return nua ? nua->nua_handles : NULL;
}
/** Create an operation handle
*
* Allocates a new operation handle and associated storage.
*
* @param nua Pointer to @nua stack object
* @param hmagic Pointer to callback context
* @param tag, value, ... List of tagged parameters
*
* @retval !=NULL Pointer to operation handle
* @retval NULL Creation failed
*
* @par Related tags:
* Duplicates the provided tags for use with every operation. Note that
* NUTAG_URL() is converted to SIPTAG_TO() if there is no SIPTAG_TO().
* And also vice versa, request-URI is taken from SIPTAG_TO() if there
* is no NUTAG_URL(). Note that certain SIP headers cannot be saved with
* the handle. They include @ContentLength, @CSeq, @RSeq, @RAck, and
* @Timestamp.
*
* @par
* nua_handle() accepts all the tags accepted by nua_set_hparams(), too.
*
*
* @par Events:
* none
*
* @sa nua_handle_bind(), nua_handle_destroy(), nua_handle_ref(),
* nua_handle_unref().
*/
nua_handle_t *nua_handle(nua_t *nua, nua_hmagic_t *hmagic,
tag_type_t tag, tag_value_t value, ...)
{
nua_handle_t *nh = NULL;
if (nua) {
ta_list ta;
ta_start(ta, tag, value);
nh = nh_create_handle(nua, hmagic, ta_args(ta));
if (nh)
nh->nh_ref_by_user = 1;
ta_end(ta);
}
return nh;
}
/** Bind a callback context to an operation handle.
*
* @param nh Pointer to operation handle
* @param hmagic Pointer to callback context
*
* @return
* nothing
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
void nua_handle_bind(nua_handle_t *nh, nua_hmagic_t *hmagic)
{
enter;
if (NH_IS_VALID(nh))
nh->nh_magic = hmagic;
}
/** Fetch a callback context from an operation handle.
*
* @param nh Pointer to operation handle
*
* @return
* Pointer to callback context
*
* @par Related tags:
* none
*
* @par Events:
* none
*
* @NEW_1_12_4.
*/
nua_hmagic_t *nua_handle_magic(nua_handle_t *nh)
{
nua_hmagic_t *magic = NULL;
enter;
if (NH_IS_VALID(nh))
magic = nh->nh_magic;
return magic;
}
/* ---------------------------------------------------------------------- */
/** Check if operation handle is used for INVITE
*
* Check if operation handle has been used with either outgoing or incoming
* INVITE request.
*
* @param nh Pointer to operation handle
*
* @retval 0 no invite in operation or operation handle is invalid
* @retval 1 operation has invite
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
int nua_handle_has_invite(nua_handle_t const *nh)
{
return nh ? nh->nh_has_invite : 0;
}
/**Check if operation handle has active event subscriptions.
*
* Active subscription can be established either by nua_subscribe() or
* nua_refer() calls.
*
* @param nh Pointer to operation handle
*
* @retval 0 no event subscriptions in operation or
* operation handle is invalid
* @retval !=0 operation has event subscriptions
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
int nua_handle_has_events(nua_handle_t const *nh)
{
return nh ? nh->nh_ds->ds_has_events : 0;
}
/** Check if operation handle has active registrations
*
* A registration is active when either when a REGISTER operation is going
* on or when it has successfully completed so that @nua stack is expected to
* refresh the registration in the future. Normally, a handle has active
* registration after nua_register() until nua_unregister() completes,
* unless the initial nua_register() had either expiration time of 0 or it
* had SIPTAG_CONTACT(NULL) as an argument.
*
* @param nh Pointer to operation handle
*
* @retval 0 no active registration in operation or
* operation handle is invalid
* @retval 1 operation has registration
*
* @par Related tags:
* none
*
* @par Events:
* none
*
* @sa nua_register(), nua_unregister(), #nua_r_register, #nua_r_unregister
*/
int nua_handle_has_registrations(nua_handle_t const *nh)
{
return nh && nh->nh_ds->ds_has_register;
}
/** Check if operation handle has been used with outgoing SUBSCRIBE of REFER request.
*
* @param nh Pointer to operation handle
*
* @retval 0 no active subscription in operation or
* operation handle is invalid
* @retval 1 operation has subscription.
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
int nua_handle_has_subscribe(nua_handle_t const *nh)
{
return nh ? nh->nh_has_subscribe : 0;
}
/** Check if operation handle has been used with nua_register() or nua_unregister().
*
* @param nh Pointer to operation handle
*
* @retval 0 no active register in operation or operation handle is invalid
* @retval 1 operation has been used with nua_register() or nua-unregister()
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
int nua_handle_has_register(nua_handle_t const *nh)
{
return nh ? nh->nh_has_register : 0;
}
/** Check if operation handle has an active call
*
* @param nh Pointer to operation handle
*
* @retval 0 no active call in operation or operation handle is invalid
* @retval 1 operation has established call or pending call request.
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
int nua_handle_has_active_call(nua_handle_t const *nh)
{
return nh ? nh->nh_active_call : 0;
}
/** Check if operation handle has a call on hold
*
* Please note that this status is not affected by remote end putting
* this end on hold. Remote end can put each media separately on hold
* and status is reflected on SOATAG_ACTIVE_AUDIO(), SOATAG_ACTIVE_VIDEO()
* and SOATAG_ACTIVE_CHAT() tag values in #nua_i_state event.
*
* @param nh Pointer to operation handle
*
* @retval 0 if no call on hold in operation or operation handle is invalid
* @retval 1 if operation has call on hold, for example nua_invite() or
* nua_update() has been called with SOATAG_HOLD() with non-NULL
* argument.
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
int nua_handle_has_call_on_hold(nua_handle_t const *nh)
{
return nh ? nh->nh_hold_remote : 0;
}
/** Get the remote address (From/To header) of operation handle
*
* Remote address is used as To header in outgoing operations and
* derived from From: header in incoming operations.
*
* @param nh Pointer to operation handle
*
* @retval NULL no remote address for operation or operation handle invalid
* @retval !=NULL pointer to remote address for operation
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
sip_to_t const *nua_handle_remote(nua_handle_t const *nh)
{
return nh ? nh->nh_ds->ds_remote : NULL;
}
/** Get the local address (From/To header) of operation handle
*
* Local address is used as From header in outgoing operations and
* derived from To: header in incoming operations.
*
* @param nh Pointer to operation handle
*
* @retval NULL no local address for operation or operation handle invalid
* @retval !=NULL pointer to local address for operation
*
* @par Related tags:
* none
*
* @par Events:
* none
*/
sip_to_t const *nua_handle_local(nua_handle_t const *nh)
{
return nh ? nh->nh_ds->ds_local : NULL;
}
/* Documented with nua_stack_set_params() */
void nua_set_params(nua_t *nua, tag_type_t tag, tag_value_t value, ...)
{
ta_list ta;
ta_start(ta, tag, value);
enter;
nua_signal(nua, NULL, NULL, nua_r_set_params, 0, NULL, ta_tags(ta));
ta_end(ta);
}
/* Documented with nua_stack_get_params() */
void nua_get_params(nua_t *nua, tag_type_t tag, tag_value_t value, ...)
{
ta_list ta;
ta_start(ta, tag, value);
enter;
nua_signal(nua, NULL, NULL, nua_r_get_params, 0, NULL, ta_tags(ta));
ta_end(ta);
}
#define NUA_SIGNAL(nh, event, tag, value) \
enter; \
if (NH_IS_VALID((nh))) { \
ta_list ta; \
ta_start(ta, tag, value); \
nua_signal((nh)->nh_nua, nh, NULL, event, 0, NULL, ta_tags(ta)); \
ta_end(ta); \
} \
else { \
SU_DEBUG_1(("nua: " #event " with invalid handle %p\n", (void *)nh)); \
}
/* Documented with nua_stack_set_params() */
void nua_set_hparams(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_set_params, tag, value);
}
/* Documented with nua_stack_get_params() */
void nua_get_hparams(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_get_params, tag, value);
}
/* Documented with nua_stack_register() */
void nua_register(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_register, tag, value);
}
void nua_unregister(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_unregister, tag, value);
}
/* Documented with nua_stack_invite() */
void nua_invite(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_invite, tag, value);
}
/* Documented with nua_stack_ack() */
void nua_ack(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_ack, tag, value);
}
/* Documented with nua_stack_bye() */
void nua_bye(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_bye, tag, value);
}
/* Documented with nua_stack_cancel() */
void nua_cancel(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_cancel, tag, value);
}
/* Documented with nua_stack_options() */
void nua_options(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_options, tag, value);
}
/* Documented with nua_stack_message() */
void nua_message(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_message, tag, value);
}
/* Documented with nua_stack_method() */
void nua_method(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_method, tag, value);
}
/** Send a chat message.
*
* A chat channel can be established during call setup using "message" media.
* An active chat channel is indicated using #nua_i_state event containing
* SOATAG_ACTIVE_CHAT() tag. Chat messages can be sent using this channel with
* nua_chat() function. Currently this is implemented using SIP MESSAGE
* requests but in future MSRP (message session protocol) will replace it.
*
* @param nh Pointer to operation handle
* @param tag, value, ... List of tagged parameters
*
* @return
* nothing
*
* @par Related Tags:
* SIPTAG_CONTENT_TYPE() \n
* SIPTAG_PAYLOAD() \n
* SIPTAG_FROM() \n
* SIPTAG_TO() \n
* Use of other SIP tags is deprecated
*
* @par Events:
* #nua_r_chat
*/
void nua_chat(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_chat, tag, value);
}
/* Documented with nua_stack_subscribe() */
void nua_subscribe(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_subscribe, tag, value);
}
/* Documented with nua_stack_subscribe() */
void nua_unsubscribe(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_unsubscribe, tag, value);
}
/* Documented with nua_stack_notify() */
void nua_notify(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_notify, tag, value);
}
/* nua_r_notify is documented with process_response_to_notify() */
/** Create an event server.
*
* This function create an event server taking care of sending NOTIFY
* requests and responding to further SUBSCRIBE requests. The event
* server can accept multiple subscriptions from several sources and
* takes care for distributing the notifications. Unlike other functions
* this call only accepts the SIP tags listed below.
*
* @param nh Pointer to operation handle
* @param tag, value, ... List of tagged parameters
*
* @return
* nothing
*
* @par Related Tags:
* NUTAG_URL() \n
* SIPTAG_EVENT() or SIPTAG_EVENT_STR() \n
* SIPTAG_CONTENT_TYPE() or SIPTAG_CONTENT_TYPE_STR() \n
* SIPTAG_PAYLOAD() or SIPTAG_PAYLOAD_STR() \n
* SIPTAG_ACCEPT() or SIPTAG_ACCEPT_STR() \n
*
* @par Events:
* #nua_r_notify
*/
void nua_notifier(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_notifier, tag, value);
}
/** Terminate an event server.
*
* Terminate an event server with matching event and content type. The event
* server was created earlier with nua_notifier() function.
*
* @param nh Pointer to operation handle
* @param tag, value, ... List of tagged parameters
*
* @return
* nothing
*
* @par Related Tags:
* SIPTAG_EVENT() \n
* SIPTAG_CONTENT_TYPE() \n
* SIPTAG_PAYLOAD() \n
* NEATAG_REASON()
*
* @par Events:
* #nua_r_terminate
*
* @sa nua_notifier(), nua_authorize().
*/
void nua_terminate(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_terminate, tag, value);
}
/* Documented with nua_stack_refer() */
void nua_refer(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_refer, tag, value);
}
/* Documented with nua_stack_publish() */
void nua_publish(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_publish, tag, value);
}
/* Documented with nua_stack_publish() */
void nua_unpublish(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_unpublish, tag, value);
}
/* Documented with nua_stack_info() */
void nua_info(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_info, tag, value);
}
/* Documented with nua_stack_prack() */
void nua_prack(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_prack, tag, value);
}
/* Documented with nua_stack_update() */
void nua_update(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_update, tag, value);
}
/** Authenticate an operation.
*
* - 401 / 407 response with www-authenticate header/ proxy-authenticate header
* - application should provide stack with username&password for each realm
* with NUTAG_AUTH() tag
* - restarts operation
*
* @param nh Pointer to operation handle
* @param tag, value, ... List of tagged parameters
*
* @return
* nothing
*
* @par Related Tags:
* NUTAG_AUTH()
*
* @par Events:
* (any operation events)
*/
void nua_authenticate(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_authenticate, tag, value);
}
/** Authorize a subscriber.
*
* After creating a local presence server by nua_notifier(), an incoming
* SUBSCRIBE request causes #nua_i_subscription event. Each subscriber is
* identified with NEATAG_SUB() tag in the #nua_i_subscription event.
* Application can either authorize the subscriber with
* NUTAG_SUBSTATE(#nua_substate_active) or terminate the subscription with
* NUTAG_SUBSTATE(#nua_substate_terminated).
*
* @param nh Pointer to operation handle
* @param tag, value, ... List of tagged parameters
*
* @return
* nothing
*
* @par Related Tags:
* NEATAG_SUB() \n
* NUTAG_SUBSTATE()
*
* @par Events:
* #nua_i_subscription
*
* @sa nua_notifier(), nua_terminate()
*/
void nua_authorize(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_authorize, tag, value);
}
/*# Redirect an operation. */
void nua_redirect(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
{
NUA_SIGNAL(nh, nua_r_redirect, tag, value);
}
/* Documented with nua_stack_respond() */
void nua_respond(nua_handle_t *nh,
int status, char const *phrase,
tag_type_t tag, tag_value_t value,
...)
{
enter;
if (NH_IS_VALID(nh)) {
ta_list ta;
ta_start(ta, tag, value);
nua_signal(nh->nh_nua, nh, NULL, nua_r_respond,
status, phrase, ta_tags(ta));
ta_end(ta);
}
else {
SU_DEBUG_1(("nua: respond with invalid handle %p\n", (void *)nh));
}
}
/** Destroy a handle
*
* Terminate the protocol state associated with an operation handle. The
* stack discards resources and terminates the ongoing dialog usage,
* sessions and transactions associated with this handle. For example, calls
* are terminated with BYE request. Also, the reference count for the handle
* is also decremented.
*
* The handles use reference counting for memory management. In order to
* make it more convenient for programmer, nua_handle_destroy() decreases
* the reference count, too.
*
* @param nh Pointer to operation handle
*
* @return
* nothing
*
* @par Related Tags:
* none
*
* @par Events:
* none
*
* @sa nua_handle(), nua_handle_bind(), nua_handle_ref(), nua_handle_unref(),
* nua_unregister(), nua_unpublish(), nua_unsubscribe(), nua_bye().
*/
void nua_handle_destroy(nua_handle_t *nh)
{
enter;
if (NH_IS_VALID(nh) && !NH_IS_DEFAULT(nh)) {
nh->nh_valid = NULL; /* Events are no more delivered to appl. */
nua_signal(nh->nh_nua, nh, NULL, nua_r_destroy, 0, NULL, TAG_END());
}
}
/** Attempt to destroy a handle indirectly.
*
* Does not destroy the handle directly but forwards the nua_r_destroy_user event
* to the application so it could call nua_handle_destroy() from there.
*
* @param nh Pointer to operation handle
*
* @return
* nothing
*
* @par Related Tags:
* none
*
* @par Events:
* none
*
* * @since New in @VERSION_1_13_18.
*
* @sa nua_handle_destroy(), nua_handle(), nua_handle_bind(), nua_handle_ref(), nua_handle_unref(),
* nua_unregister(), nua_unpublish(), nua_unsubscribe(), nua_bye().
*/
void nua_handle_destroy_user(nua_handle_t *nh)
{
enter;
if (NH_IS_VALID(nh)) {
nua_signal(nh->nh_nua, nh, NULL, nua_r_destroy_user, 0, NULL, TAG_END());
}
}
/* ---------------------------------------------------------------------- */
struct nua_stack_handle_make_replaces_args {
sip_replaces_t *retval;
nua_handle_t *nh;
su_home_t *home;
int early_only;
};
static int nua_stack_handle_make_replaces_call(void *arg)
{
struct nua_stack_handle_make_replaces_args *a = arg;
a->retval = nua_stack_handle_make_replaces(a->nh, a->home, a->early_only);
return 0;
}
/**Generate a @Replaces header for handle.
*
* A @Replaces header contains the @CallID value, @From and @To tags
* corresponding to SIP dialog associated with handle @a nh. Note that the
* @Replaces matches with dialog of the remote peer,
* nua_handle_by_replaces() does not return same handle (unless you swap
* rp_from_tag and rp_to_tag in @Replaces header).
*
* A @Replaces header is used in attended transfer, among other things.
*
* @param nh pointer to operation handle
* @param home memory home used to allocate the header
* @param early_only if true, include "early-only" parameter in @Replaces, too
*
* @return A newly created @Replaces header.
*
* @since New in @VERSION_1_12_4.
*
* @sa nua_handle_by_replaces(), @Replaces, @RFC3891, @RFC3515, nua_refer(),
* #nua_i_refer(), @ReferTo, nta_leg_make_replaces(),
* sip_headers_as_url_query()
*/
sip_replaces_t *nua_handle_make_replaces(nua_handle_t *nh,