Newer
Older
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
module LibSip_EncdecDeclarations {
import from LibSip_SIPTypesAndValues all;
import from LibSip_SMSTypesAndValues all;
import from LibSip_SimpleMsgSummaryTypes all;
import from LibSip_MessageBodyTypes all;
external function fx_enc_Request (Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_REGISTER_Request (REGISTER_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_INVITE_Request (INVITE_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_OPTIONS_Request (OPTIONS_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_BYE_Request (BYE_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_CANCEL_Request (CANCEL_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_ACK_Request (ACK_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_PRACK_Request (PRACK_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_NOTIFY_Request (NOTIFY_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_SUBSCRIBE_Request (SUBSCRIBE_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_PUBLISH_Request (PUBLISH_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_UPDATE_Request (UPDATE_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_REFER_Request (REFER_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_MESSAGE_Request (MESSAGE_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_INFO_Request (INFO_Request p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_Response (Response p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_Raw (Raw p) return bitstring
with {extension "prototype(convert) encode(SIPCodec)"}
external function fx_enc_SMS(SimpleMsgSummary pdu) return bitstring
with { extension "prototype(convert) encode(SIPCodec)" };
external function fx_enc_MessageBody(in MessageBody pdu) return bitstring
with { extension "prototype(convert) encode(SIPCodec)" };
external function fx_dec_Request (inout bitstring pdu, out Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_REGISTER_Request (inout bitstring pdu, out REGISTER_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_INVITE_Request (inout bitstring pdu, out INVITE_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_OPTIONS_Request (inout bitstring pdu, out OPTIONS_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_BYE_Request (inout bitstring pdu, out BYE_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_CANCEL_Request (inout bitstring pdu, out CANCEL_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_ACK_Request (inout bitstring pdu, out ACK_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_PRACK_Request (inout bitstring pdu, out PRACK_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_NOTIFY_Request (inout bitstring pdu, out NOTIFY_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_SUBSCRIBE_Request (inout bitstring pdu, out SUBSCRIBE_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_PUBLISH_Request (inout bitstring pdu, out PUBLISH_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_UPDATE_Request (inout bitstring pdu, out UPDATE_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_REFER_Request (inout bitstring pdu, out REFER_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_MESSAGE_Request (inout bitstring pdu, out MESSAGE_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_INFO_Request (inout bitstring pdu, out INFO_Request p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_Response (inout bitstring pdu, out Response p) return integer
with {extension "prototype(sliding) decode(SIPCodec)"}
external function fx_dec_SMS(inout bitstring pdu, out SimpleMsgSummary p) return integer
with { extension "prototype(sliding) decode(SIPCodec)" };
external function fx_dec_MessageBody(inout bitstring pdu, out MessageBody p) return integer
with { extension "prototype(sliding) decode(SIPCodec)" };
} // End of module module LibSip_EncdecDeclarations