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
|
%{
#include <string.h>
#include <ctype.h>
#include "resip/stack/ParameterTypes.hxx"
namespace resip {
using namespace std;
%}
struct params { const char *name; ParameterTypes::Type type; };
%%
data, ParameterTypes::data
control, ParameterTypes::control
mobility, ParameterTypes::mobility
description, ParameterTypes::description
events, ParameterTypes::events
priority, ParameterTypes::priority
methods, ParameterTypes::methods
schemes, ParameterTypes::schemes
application, ParameterTypes::application
video, ParameterTypes::video
language, ParameterTypes::language
type, ParameterTypes::type
isfocus, ParameterTypes::isFocus
actor, ParameterTypes::actor
text, ParameterTypes::text
cause, ParameterTypes::cause
extensions, ParameterTypes::extensions
+sip.instance, ParameterTypes::Instance
reg-id, ParameterTypes::regid
ob, ParameterTypes::ob
gr, ParameterTypes::gr
pub-gruu, ParameterTypes::pubGruu
temp-gruu, ParameterTypes::tempGruu
name, ParameterTypes::name
transport, ParameterTypes::transport
user, ParameterTypes::user
ext, ParameterTypes::extension
method, ParameterTypes::method
ttl, ParameterTypes::ttl
maddr, ParameterTypes::maddr
lr, ParameterTypes::lr
q, ParameterTypes::q
purpose, ParameterTypes::purpose
to-tag, ParameterTypes::toTag
from-tag, ParameterTypes::fromTag
duration, ParameterTypes::duration
expires, ParameterTypes::expires
handling, ParameterTypes::handling
tag, ParameterTypes::tag
branch, ParameterTypes::branch
received, ParameterTypes::received
require, ParameterTypes::require
rinstance, ParameterTypes::rinstance
comp, ParameterTypes::comp
rport, ParameterTypes::rport
algorithm, ParameterTypes::algorithm
cnonce, ParameterTypes::cnonce
domain, ParameterTypes::domain
id, ParameterTypes::id
nonce, ParameterTypes::nonce
nc, ParameterTypes::nc
opaque, ParameterTypes::opaque
realm, ParameterTypes::realm
response, ParameterTypes::response
stale, ParameterTypes::stale
username, ParameterTypes::username
early-only, ParameterTypes::earlyOnly
refresher, ParameterTypes::refresher
qop, ParameterTypes::qop
uri, ParameterTypes::uri
retry-after, ParameterTypes::retryAfter
reason, ParameterTypes::reason
d-alg, ParameterTypes::dAlg
d-qop, ParameterTypes::dQop
d-ver, ParameterTypes::dVer
smime-type, ParameterTypes::smimeType
filename, ParameterTypes::filename
protocol, ParameterTypes::protocol
micalg, ParameterTypes::micalg
boundary, ParameterTypes::boundary
expiration, ParameterTypes::expiration
size, ParameterTypes::size
permission, ParameterTypes::permission
site, ParameterTypes::site
directory, ParameterTypes::directory
mode, ParameterTypes::mode
server, ParameterTypes::server
charset, ParameterTypes::charset
access-type, ParameterTypes::accessType
profile-type, ParameterTypes::profileType
vendor, ParameterTypes::vendor
model, ParameterTypes::model
version, ParameterTypes::version
effective-by, ParameterTypes::effectiveBy
document, ParameterTypes::document
app-id, ParameterTypes::appId
network-user, ParameterTypes::networkUser
url, ParameterTypes::url
sigcomp-id, ParameterTypes::sigcompId
index, ParameterTypes::index
rc, ParameterTypes::rc
mp, ParameterTypes::mp
np, ParameterTypes::np
utran-cell-id-3gpp, ParameterTypes::utranCellId3gpp
cgi-3gpp, ParameterTypes::cgi3gpp
ccf, ParameterTypes::ccf
ecf, ParameterTypes::ecf
icid-value, ParameterTypes::icidValue
icid-generated-at, ParameterTypes::icidGeneratedAt
orig-ioi, ParameterTypes::origIoi
term-ioi, ParameterTypes::termIoi
content, ParameterTypes::content
encoding, ParameterTypes::encoding
addtransport, ParameterTypes::addTransport
ws-src-ip, ParameterTypes::wsSrcIp
ws-src-port, ParameterTypes::wsSrcPort
%%
}
|