qmi-service-wds.json 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. [
  2. // *********************************************************************************
  3. { "name" : "WDS",
  4. "type" : "Service" },
  5. // *********************************************************************************
  6. { "name" : "QMI Client WDS",
  7. "type" : "Client",
  8. "since" : "1.0" },
  9. // *********************************************************************************
  10. { "name" : "QMI Message WDS",
  11. "type" : "Message-ID-Enum" },
  12. // *********************************************************************************
  13. { "name" : "QMI Indication WDS",
  14. "type" : "Indication-ID-Enum" },
  15. // *********************************************************************************
  16. { "common-ref" : "WDS Extended Error Code",
  17. "name" : "Extended Error Code",
  18. "id" : "0xE0",
  19. "type" : "TLV",
  20. "format" : "guint16",
  21. "public-format" : "QmiWdsDsProfileError",
  22. "prerequisites" : [ { "field" : "Result Error Status",
  23. "operation" : "!=",
  24. "value" : "QMI_STATUS_SUCCESS" },
  25. { "field" : "Result Error Code",
  26. "operation" : "==",
  27. "value" : "QMI_PROTOCOL_ERROR_EXTENDED_INTERNAL" } ] },
  28. { "common-ref" : "WDS Profile Identifier",
  29. "name" : "Profile Identifier",
  30. "id" : "0x01",
  31. "type" : "TLV",
  32. "format" : "sequence",
  33. "contents" : [ { "name" : "Profile Type",
  34. "format" : "guint8",
  35. "public-format" : "QmiWdsProfileType" },
  36. { "name" : "Profile Index",
  37. "format" : "guint8" } ] },
  38. { "common-ref" : "WDS Profile Name",
  39. "name" : "Profile Name",
  40. "id" : "0x10",
  41. "type" : "TLV",
  42. "format" : "string" },
  43. { "common-ref" : "WDS PDP Type",
  44. "name" : "PDP Type",
  45. "id" : "0x11",
  46. "type" : "TLV",
  47. "format" : "guint8",
  48. "public-format" : "QmiWdsPdpType" },
  49. { "common-ref" : "WDS PDP Header Compression Type",
  50. "name" : "PDP Header Compression Type",
  51. "id" : "0x12",
  52. "type" : "TLV",
  53. "format" : "guint8",
  54. "public-format" : "QmiWdsPdpHeaderCompressionType" },
  55. { "common-ref" : "WDS PDP Data Compression Type",
  56. "name" : "PDP Data Compression Type",
  57. "id" : "0x13",
  58. "type" : "TLV",
  59. "format" : "guint8",
  60. "public-format" : "QmiWdsPdpDataCompressionType" },
  61. { "common-ref" : "WDS APN Name",
  62. "name" : "APN Name",
  63. "id" : "0x14",
  64. "type" : "TLV",
  65. "format" : "string" },
  66. { "common-ref" : "WDS Primary IPv4 DNS Address",
  67. "name" : "Primary IPv4 DNS Address",
  68. "id" : "0x15",
  69. "type" : "TLV",
  70. "endian" : "little",
  71. "format" : "guint32" },
  72. { "common-ref" : "WDS Secondary IPv4 DNS Address",
  73. "name" : "Secondary IPv4 DNS Address",
  74. "id" : "0x16",
  75. "type" : "TLV",
  76. "endian" : "little",
  77. "format" : "guint32" },
  78. { "common-ref" : "WDS UMTS Requested QoS",
  79. "name" : "UMTS Requested QoS",
  80. "id" : "0x17",
  81. "type" : "TLV",
  82. "format" : "sequence",
  83. "contents" : [ { "name" : "Traffic Class",
  84. "format" : "guint8",
  85. "public-format" : "QmiWdsTrafficClass" },
  86. { "name" : "Max uplink bitrate",
  87. "format" : "guint32" },
  88. { "name" : "Max downlink bitrate",
  89. "format" : "guint32" },
  90. { "name" : "Guaranteed uplink bitrate",
  91. "format" : "guint32" },
  92. { "name" : "Guaranteed downlink bitrate",
  93. "format" : "guint32" },
  94. { "name" : "QoS Delivery Order",
  95. "format" : "guint8",
  96. "public-format" : "QmiWdsDeliveryOrder" },
  97. { "name" : "Maximum SDU Size",
  98. "format" : "guint32" },
  99. { "name" : "SDU Error Ratio",
  100. "format" : "guint8",
  101. "public-format" : "QmiWdsSduErrorRatio" },
  102. { "name" : "Residual Bit Error Ratio",
  103. "format" : "guint8",
  104. "public-format" : "QmiWdsSduResidualBitErrorRatio" },
  105. { "name" : "Delivery Erroneous SDU",
  106. "format" : "guint8",
  107. "public-format" : "QmiWdsSduErroneousDelivery" },
  108. { "name" : "Transfer Delay",
  109. "format" : "guint32" },
  110. { "name" : "Traffic Handling Priority",
  111. "format" : "guint32" } ] },
  112. { "common-ref" : "WDS UMTS Minimum QoS",
  113. "name" : "UMTS Minimum QoS",
  114. "id" : "0x18",
  115. "type" : "TLV",
  116. "format" : "sequence",
  117. "contents" : [ { "name" : "Traffic Class",
  118. "format" : "guint8",
  119. "public-format" : "QmiWdsTrafficClass" },
  120. { "name" : "Max uplink bitrate",
  121. "format" : "guint32" },
  122. { "name" : "Max downlink bitrate",
  123. "format" : "guint32" },
  124. { "name" : "Guaranteed uplink bitrate",
  125. "format" : "guint32" },
  126. { "name" : "Guaranteed downlink bitrate",
  127. "format" : "guint32" },
  128. { "name" : "QoS Delivery Order",
  129. "format" : "guint8",
  130. "public-format" : "QmiWdsDeliveryOrder" },
  131. { "name" : "Maximum SDU Size",
  132. "format" : "guint32" },
  133. { "name" : "SDU Error Ratio",
  134. "format" : "guint8",
  135. "public-format" : "QmiWdsSduErrorRatio" },
  136. { "name" : "Residual Bit Error Ratio",
  137. "format" : "guint8",
  138. "public-format" : "QmiWdsSduResidualBitErrorRatio" },
  139. { "name" : "Delivery Erroneous SDU",
  140. "format" : "guint8",
  141. "public-format" : "QmiWdsSduErroneousDelivery" },
  142. { "name" : "Transfer Delay",
  143. "format" : "guint32" },
  144. { "name" : "Traffic Handling Priority",
  145. "format" : "guint32" } ] },
  146. { "common-ref" : "WDS GPRS Requested QoS",
  147. "name" : "GPRS Requested QoS",
  148. "id" : "0x19",
  149. "type" : "TLV",
  150. "format" : "sequence",
  151. "contents" : [ { "name" : "Precedence Class",
  152. "format" : "guint32" },
  153. { "name" : "Delay Class",
  154. "format" : "guint32" },
  155. { "name" : "Reliability Class",
  156. "format" : "guint32" },
  157. { "name" : "Peak Throughput Class",
  158. "format" : "guint32" },
  159. { "name" : "Mean Throughput Class",
  160. "format" : "guint32" } ] },
  161. { "common-ref" : "WDS GPRS Minimum QoS",
  162. "name" : "GPRS Minimum QoS",
  163. "id" : "0x1A",
  164. "type" : "TLV",
  165. "format" : "sequence",
  166. "contents" : [ { "name" : "Precedence Class",
  167. "format" : "guint32" },
  168. { "name" : "Delay Class",
  169. "format" : "guint32" },
  170. { "name" : "Reliability Class",
  171. "format" : "guint32" },
  172. { "name" : "Peak Throughput Class",
  173. "format" : "guint32" },
  174. { "name" : "Mean Throughput Class",
  175. "format" : "guint32" } ] },
  176. { "common-ref" : "WDS Username",
  177. "name" : "Username",
  178. "id" : "0x1B",
  179. "type" : "TLV",
  180. "format" : "string",
  181. "personal-info" : "true" },
  182. { "common-ref" : "WDS Password",
  183. "name" : "Password",
  184. "id" : "0x1C",
  185. "type" : "TLV",
  186. "format" : "string",
  187. "personal-info" : "true" },
  188. { "common-ref" : "WDS Authentication",
  189. "name" : "Authentication",
  190. "id" : "0x1D",
  191. "type" : "TLV",
  192. "format" : "guint8",
  193. "public-format" : "QmiWdsAuthentication" },
  194. { "common-ref" : "WDS IPv4 Address Preference",
  195. "name" : "IPv4 Address Preference",
  196. "id" : "0x1E",
  197. "type" : "TLV",
  198. "endian" : "little",
  199. "format" : "guint32" },
  200. { "common-ref" : "WDS PCSCF Address Using PCO",
  201. "name" : "PCSCF Address Using PCO",
  202. "id" : "0x1F",
  203. "type" : "TLV",
  204. "format" : "guint8",
  205. "public-format" : "gboolean" },
  206. { "common-ref" : "WDS PCSCF Address Using DHCP",
  207. "name" : "PCSCF Address Using DHCP",
  208. "id" : "0x21",
  209. "type" : "TLV",
  210. "format" : "guint8",
  211. "public-format" : "gboolean" },
  212. { "common-ref" : "WDS IMCN Flag",
  213. "name" : "IMCN Flag",
  214. "id" : "0x22",
  215. "type" : "TLV",
  216. "format" : "guint8",
  217. "public-format" : "gboolean" },
  218. { "common-ref" : "WDS PDP Context Number",
  219. "name" : "PDP Context Number",
  220. "id" : "0x25",
  221. "type" : "TLV",
  222. "format" : "guint8" },
  223. { "common-ref" : "WDS PDP Context Secondary Flag",
  224. "name" : "PDP Context Secondary Flag",
  225. "id" : "0x26",
  226. "type" : "TLV",
  227. "format" : "guint8",
  228. "public-format" : "gboolean" },
  229. { "common-ref" : "WDS PDP Context Primary ID",
  230. "name" : "PDP Context Primary ID",
  231. "id" : "0x27",
  232. "type" : "TLV",
  233. "format" : "guint8" },
  234. { "common-ref" : "WDS IPv6 Address Preference",
  235. "name" : "IPv6 Address Preference",
  236. "id" : "0x28",
  237. "type" : "TLV",
  238. "format" : "sequence",
  239. "contents" : [ { "name" : "Address",
  240. "format" : "array",
  241. "fixed-size" : "8",
  242. "array-element" : { "format": "guint16", "endian": "network" } } ] },
  243. { "common-ref" : "WDS UMTS Requested QoS With Signaling Indication Flag",
  244. "name" : "UMTS Requested QoS With Signaling Indication Flag",
  245. "id" : "0x29",
  246. "type" : "TLV",
  247. "format" : "sequence",
  248. "contents" : [ { "name" : "Traffic Class",
  249. "format" : "guint8",
  250. "public-format" : "QmiWdsTrafficClass" },
  251. { "name" : "Max uplink bitrate",
  252. "format" : "guint32" },
  253. { "name" : "Max downlink bitrate",
  254. "format" : "guint32" },
  255. { "name" : "Guaranteed uplink bitrate",
  256. "format" : "guint32" },
  257. { "name" : "Guaranteed downlink bitrate",
  258. "format" : "guint32" },
  259. { "name" : "QoS Delivery Order",
  260. "format" : "guint8",
  261. "public-format" : "QmiWdsDeliveryOrder" },
  262. { "name" : "Maximum SDU Size",
  263. "format" : "guint32" },
  264. { "name" : "SDU Error Ratio",
  265. "format" : "guint8",
  266. "public-format" : "QmiWdsSduErrorRatio" },
  267. { "name" : "Residual Bit Error Ratio",
  268. "format" : "guint8",
  269. "public-format" : "QmiWdsSduResidualBitErrorRatio" },
  270. { "name" : "Delivery Erroneous SDU",
  271. "format" : "guint8",
  272. "public-format" : "QmiWdsSduErroneousDelivery" },
  273. { "name" : "Transfer Delay",
  274. "format" : "guint32" },
  275. { "name" : "Traffic Handling Priority",
  276. "format" : "guint32" },
  277. { "name" : "Signaling Indication",
  278. "format" : "gint8" } ] },
  279. { "common-ref" : "WDS UMTS Minimum QoS With Signaling Indication Flag",
  280. "name" : "UMTS Minimum QoS With Signaling Indication Flag",
  281. "id" : "0x2A",
  282. "type" : "TLV",
  283. "format" : "sequence",
  284. "contents" : [ { "name" : "Traffic Class",
  285. "format" : "guint8",
  286. "public-format" : "QmiWdsTrafficClass" },
  287. { "name" : "Max uplink bitrate",
  288. "format" : "guint32" },
  289. { "name" : "Max downlink bitrate",
  290. "format" : "guint32" },
  291. { "name" : "Guaranteed uplink bitrate",
  292. "format" : "guint32" },
  293. { "name" : "Guaranteed downlink bitrate",
  294. "format" : "guint32" },
  295. { "name" : "QoS Delivery Order",
  296. "format" : "guint8",
  297. "public-format" : "QmiWdsDeliveryOrder" },
  298. { "name" : "Maximum SDU Size",
  299. "format" : "guint32" },
  300. { "name" : "SDU Error Ratio",
  301. "format" : "guint8",
  302. "public-format" : "QmiWdsSduErrorRatio" },
  303. { "name" : "Residual Bit Error Ratio",
  304. "format" : "guint8",
  305. "public-format" : "QmiWdsSduResidualBitErrorRatio" },
  306. { "name" : "Delivery Erroneous SDU",
  307. "format" : "guint8",
  308. "public-format" : "QmiWdsSduErroneousDelivery" },
  309. { "name" : "Transfer Delay",
  310. "format" : "guint32" },
  311. { "name" : "Traffic Handling Priority",
  312. "format" : "guint32" },
  313. { "name" : "Signaling Indication",
  314. "format" : "gint8" } ] },
  315. { "common-ref" : "WDS IPv6 Primary DNS Address Preference",
  316. "name" : "IPv6 Primary DNS Address Preference",
  317. "id" : "0x2B",
  318. "type" : "TLV",
  319. "format" : "array",
  320. "fixed-size" : "8",
  321. "array-element" : { "format" : "guint16",
  322. "endian" : "network" } },
  323. { "common-ref" : "WDS IPv6 Secondary DNS Address Preference",
  324. "name" : "IPv6 Secondary DNS Address Preference",
  325. "id" : "0x2C",
  326. "type" : "TLV",
  327. "format" : "array",
  328. "fixed-size" : "8",
  329. "array-element" : { "format" : "guint16",
  330. "endian" : "network" } },
  331. { "common-ref" : "WDS LTE QoS Parameters",
  332. "name" : "LTE QoS Parameters",
  333. "id" : "0x2E",
  334. "type" : "TLV",
  335. "format" : "sequence",
  336. "contents" : [ { "name" : "QoS Class Identifier",
  337. "format" : "guint8",
  338. "public-format" : "QmiWdsQosClassIdentifier" },
  339. { "name" : "Guaranteed Downlink Bitrate",
  340. "format" : "guint32" },
  341. { "name" : "Max Downlink Bitrate",
  342. "format" : "guint32" },
  343. { "name" : "Guaranteed Uplink Bitrate",
  344. "format" : "guint32" },
  345. { "name" : "Max Uplink Bitrate",
  346. "format" : "guint32" } ] },
  347. { "common-ref" : "WDS APN Disabled Flag",
  348. "name" : "APN Disabled Flag",
  349. "id" : "0x2F",
  350. "type" : "TLV",
  351. "format" : "guint8",
  352. "public-format" : "gboolean" },
  353. { "common-ref" : "WDS Roaming Disallowed Flag",
  354. "name" : "Roaming Disallowed Flag",
  355. "id" : "0x3E",
  356. "type" : "TLV",
  357. "format" : "guint8",
  358. "public-format" : "gboolean" },
  359. { "common-ref" : "WDS APN Type",
  360. "name" : "APN Type Mask",
  361. "id" : "0xDD",
  362. "type" : "TLV",
  363. "format" : "guint64",
  364. "public-format" : "QmiWdsApnTypeMask" },
  365. // *********************************************************************************
  366. { "name" : "Reset",
  367. "type" : "Message",
  368. "service" : "WDS",
  369. "id" : "0x0000",
  370. "since" : "1.0",
  371. "output" : [ { "common-ref" : "Operation Result" } ] },
  372. // *********************************************************************************
  373. { "name" : "Set Event Report",
  374. "type" : "Message",
  375. "service" : "WDS",
  376. "id" : "0x0001",
  377. "since" : "1.18",
  378. "input" : [ { "name" : "Channel Rate",
  379. "id" : "0x10",
  380. "type" : "TLV",
  381. "since" : "1.18",
  382. "format" : "guint8",
  383. "public-format" : "gboolean" },
  384. { "name" : "Transfer Statistics",
  385. "id" : "0x11",
  386. "type" : "TLV",
  387. "since" : "1.18",
  388. "format" : "sequence",
  389. "contents" : [ { "name" : "Interval Seconds",
  390. "format" : "guint8" },
  391. { "name" : "Indicators",
  392. "format" : "gint32",
  393. "public-format" : "QmiWdsSetEventReportTransferStatistics" } ] },
  394. { "name" : "Data Bearer Technology",
  395. "id" : "0x12",
  396. "type" : "TLV",
  397. "since" : "1.18",
  398. "format" : "guint8",
  399. "public-format" : "gboolean" },
  400. { "name" : "Dormancy Status",
  401. "id" : "0x13",
  402. "type" : "TLV",
  403. "since" : "1.18",
  404. "format" : "guint8",
  405. "public-format" : "gboolean" },
  406. { "name" : "MIP Status",
  407. "id" : "0x14",
  408. "type" : "TLV",
  409. "since" : "1.18",
  410. "format" : "guint8" },
  411. { "name" : "Current Data Bearer Technology",
  412. "id" : "0x15",
  413. "type" : "TLV",
  414. "since" : "1.18",
  415. "format" : "guint8",
  416. "public-format" : "gboolean" },
  417. { "name" : "Data Call Status",
  418. "id" : "0x17",
  419. "type" : "TLV",
  420. "since" : "1.18",
  421. "format" : "guint8",
  422. "public-format" : "gboolean" },
  423. { "name" : "Preferred Data System",
  424. "id" : "0x18",
  425. "type" : "TLV",
  426. "since" : "1.18",
  427. "format" : "guint8",
  428. "public-format" : "gboolean" },
  429. { "name" : "EVDO PM Change",
  430. "id" : "0x19",
  431. "type" : "TLV",
  432. "since" : "1.18",
  433. "format" : "guint8",
  434. "public-format" : "gboolean" },
  435. { "name" : "Data Systems",
  436. "id" : "0x1A",
  437. "type" : "TLV",
  438. "since" : "1.18",
  439. "format" : "guint8",
  440. "public-format" : "gboolean" },
  441. { "name" : "Uplink Flow Control",
  442. "id" : "0x1B",
  443. "type" : "TLV",
  444. "since" : "1.18",
  445. "format" : "guint8",
  446. "public-format" : "gboolean" },
  447. { "name" : "Limited Data System Status",
  448. "id" : "0x1C",
  449. "type" : "TLV",
  450. "since" : "1.18",
  451. "format" : "guint8",
  452. "public-format" : "gboolean" },
  453. { "name" : "PDN Filter Removals",
  454. "id" : "0x1D",
  455. "type" : "TLV",
  456. "since" : "1.18",
  457. "format" : "guint8",
  458. "public-format" : "gboolean" },
  459. { "name" : "Extended Data Bearer Technology",
  460. "id" : "0x1E",
  461. "type" : "TLV",
  462. "since" : "1.18",
  463. "format" : "guint8",
  464. "public-format" : "gboolean" } ],
  465. "output" : [ { "common-ref" : "Operation Result" } ] },
  466. { "name" : "Event Report",
  467. "type" : "Indication",
  468. "service" : "WDS",
  469. "id" : "0x0001",
  470. "since" : "1.18",
  471. "output" : [ { "name" : "Tx Packets Ok",
  472. "id" : "0x10",
  473. "type" : "TLV",
  474. "since" : "1.18",
  475. "format" : "guint32" },
  476. { "name" : "Rx Packets Ok",
  477. "id" : "0x11",
  478. "type" : "TLV",
  479. "since" : "1.18",
  480. "format" : "guint32" },
  481. { "name" : "Tx Packets Error",
  482. "id" : "0x12",
  483. "type" : "TLV",
  484. "since" : "1.18",
  485. "format" : "guint32" },
  486. { "name" : "Rx Packets Error",
  487. "id" : "0x13",
  488. "type" : "TLV",
  489. "since" : "1.18",
  490. "format" : "guint32" },
  491. { "name" : "Tx Overflows",
  492. "id" : "0x14",
  493. "type" : "TLV",
  494. "since" : "1.18",
  495. "format" : "guint32" },
  496. { "name" : "Rx Overflows",
  497. "id" : "0x15",
  498. "type" : "TLV",
  499. "since" : "1.18",
  500. "format" : "guint32" },
  501. { "name" : "Channel Rates",
  502. "id" : "0x16",
  503. "type" : "TLV",
  504. "since" : "1.18",
  505. "format" : "sequence",
  506. "contents" : [ { "name" : "Tx Rate BPS",
  507. "format" : "gint32" },
  508. { "name" : "Rx Rate BPS",
  509. "format" : "gint32" } ] },
  510. { "name" : "Data Bearer Technology",
  511. "id" : "0x17",
  512. "type" : "TLV",
  513. "since" : "1.18",
  514. "format" : "gint8",
  515. "public-format" : "QmiWdsDataBearerTechnology" },
  516. { "name" : "Dormancy Status",
  517. "id" : "0x18",
  518. "type" : "TLV",
  519. "since" : "1.18",
  520. "format" : "guint8",
  521. "public-format" : "QmiWdsDormancyStatus" },
  522. { "name" : "Tx Bytes Ok",
  523. "id" : "0x19",
  524. "type" : "TLV",
  525. "since" : "1.18",
  526. "format" : "guint64" },
  527. { "name" : "Rx Bytes Ok",
  528. "id" : "0x1A",
  529. "type" : "TLV",
  530. "since" : "1.18",
  531. "format" : "guint64" },
  532. { "name" : "MIP Status",
  533. "id" : "0x1B",
  534. "type" : "TLV",
  535. "since" : "1.18",
  536. "format" : "guint8",
  537. "public-format" : "gboolean" },
  538. { "name" : "Current Data Bearer Technology",
  539. "id" : "0x1D",
  540. "type" : "TLV",
  541. "since" : "1.18",
  542. "format" : "sequence",
  543. "contents" : [ { "name" : "Network Type",
  544. "format" : "guint8",
  545. "public-format" : "QmiWdsNetworkType" },
  546. { "name" : "RAT Mask",
  547. "format" : "guint32" },
  548. { "name" : "SO Mask",
  549. "format" : "guint32" } ] },
  550. { "name" : "Data Call Status",
  551. "id" : "0x1F",
  552. "type" : "TLV",
  553. "since" : "1.18",
  554. "format" : "guint8",
  555. "public-format" : "QmiWdsDataCallStatus" },
  556. { "name" : "Preferred Data System",
  557. "id" : "0x20",
  558. "type" : "TLV",
  559. "since" : "1.18",
  560. "format" : "guint32",
  561. "public-format" : "QmiWdsDataSystem" },
  562. { "name" : "Data Call Type",
  563. "id" : "0x22",
  564. "type" : "TLV",
  565. "since" : "1.18",
  566. "format" : "sequence",
  567. "contents" : [ { "name" : "Data Call Type",
  568. "format" : "guint8",
  569. "public-format" : "QmiWdsDataCallType" },
  570. { "name" : "Tethered Call Type",
  571. "format" : "guint8",
  572. "public-format" : "QmiWdsTetheredCallType" } ] },
  573. { "name" : "EVDO Page Monitor Period Change",
  574. "id" : "0x23",
  575. "type" : "TLV",
  576. "since" : "1.18",
  577. "format" : "sequence",
  578. "contents" : [ { "name" : "Period Change",
  579. "format" : "guint8" },
  580. { "name" : "Force Long Sleep",
  581. "format" : "guint8",
  582. "public-format" : "gboolean" } ] },
  583. { "name" : "Data Systems",
  584. "id" : "0x24",
  585. "type" : "TLV",
  586. "since" : "1.18",
  587. "format" : "sequence",
  588. "contents" : [ { "name" : "Preferred Network Type",
  589. "format" : "guint8",
  590. "public-format" : "QmiWdsDataSystemNetworkType" },
  591. { "name" : "Networks",
  592. "format" : "array",
  593. "size-prefix-format" : "guint8",
  594. "array-element" : { "name" : "Network",
  595. "format" : "struct",
  596. "contents" : [ { "name" : "Network Type",
  597. "format" : "guint8",
  598. "public-format" : "QmiWdsDataSystemNetworkType" },
  599. { "name" : "RAT Mask",
  600. "format" : "guint32" },
  601. { "name" : "SO Mask",
  602. "format" : "guint32" } ] } } ] },
  603. { "name" : "Tx Packets Dropped",
  604. "id" : "0x25",
  605. "type" : "TLV",
  606. "since" : "1.18",
  607. "format" : "guint32" },
  608. { "name" : "Rx Packets Dropped",
  609. "id" : "0x26",
  610. "type" : "TLV",
  611. "since" : "1.18",
  612. "format" : "guint32" },
  613. { "name" : "Uplink Flow Control Enabled",
  614. "id" : "0x27",
  615. "type" : "TLV",
  616. "since" : "1.18",
  617. "format" : "gint8",
  618. "public-format" : "gboolean" },
  619. { "name" : "Data Call Address Family",
  620. "id" : "0x28",
  621. "type" : "TLV",
  622. "since" : "1.18",
  623. // Yes, TLV wants a u32
  624. "format" : "guint32",
  625. "public-format" : "QmiWdsIpFamily" },
  626. { "name" : "PDN Filters Removed",
  627. "id" : "0x29",
  628. "type" : "TLV",
  629. "since" : "1.18",
  630. "format" : "sequence",
  631. "contents" : [ { "name" : "PDN Filter Handler",
  632. "format" : "array",
  633. "size-prefix-format" : "guint8",
  634. "array-element" : { "format": "guint32" } } ] },
  635. { "name" : "Extended Data Bearer Technology",
  636. "id" : "0x2A",
  637. "type" : "TLV",
  638. "since" : "1.18",
  639. "format" : "sequence",
  640. "contents" : [ { "name" : "Data Bearer Technology",
  641. "format" : "guint32",
  642. "public-format" : "QmiWdsDataSystemNetworkType" },
  643. { "name" : "Radio Access Technology",
  644. "format" : "guint32",
  645. "public-format" : "QmiWdsRadioAccessTechnology" },
  646. { "name" : "Extended Data Bearer Technology 3GPP",
  647. "format" : "guint16",
  648. "public-format" : "QmiWdsExtendedDataBearerTechnology3gpp" },
  649. { "name" : "Reserved1",
  650. "visible" : "no",
  651. "format" : "guint8" },
  652. { "name" : "Extended Data Bearer Technology 3GPP2",
  653. "format" : "guint16",
  654. "public-format" : "QmiWdsExtendedDataBearerTechnology3gpp2" },
  655. { "name" : "Reserved2",
  656. "visible" : "no",
  657. "format" : "guint8" },
  658. { "name" : "Reserved3",
  659. "visible" : "no",
  660. "format" : "guint8" },
  661. { "name" : "Reserved4",
  662. "visible" : "no",
  663. "format" : "guint8" } ] } ] },
  664. // *********************************************************************************
  665. { "name" : "Abort",
  666. "type" : "Message",
  667. "service" : "WDS",
  668. "id" : "0x0002",
  669. "since" : "1.0",
  670. // This magic tag allows us to avoid creating a method in the client
  671. "scope" : "library-only",
  672. "input" : [ { "name" : "Transaction ID",
  673. "id" : "0x01",
  674. "type" : "TLV",
  675. "since" : "1.0",
  676. "format" : "guint16" } ],
  677. "output" : [ { "common-ref" : "Operation Result" } ] },
  678. // *********************************************************************************
  679. { "name" : "Indication Register",
  680. "type" : "Message",
  681. "service" : "WDS",
  682. "id" : "0x0003",
  683. "since" : "1.32",
  684. "input" : [ { "name" : "Report Extended IP Configuration Change",
  685. "id" : "0x12",
  686. "mandatory" : "no",
  687. "type" : "TLV",
  688. "since" : "1.32",
  689. "format" : "guint8",
  690. "public-format" : "gboolean" },
  691. { "name" : "Report Profile Changes",
  692. "id" : "0x19",
  693. "mandatory" : "no",
  694. "type" : "TLV",
  695. "since" : "1.34",
  696. "format" : "guint8",
  697. "public-format" : "gboolean" } ],
  698. "output" : [ { "common-ref" : "Operation Result" } ] },
  699. // *********************************************************************************
  700. { "name" : "Get Supported Messages",
  701. "type" : "Message",
  702. "service" : "WDS",
  703. "id" : "0x001E",
  704. "since" : "1.14",
  705. "output" : [ { "common-ref" : "Operation Result" },
  706. { "name" : "List",
  707. "id" : "0x10",
  708. "type" : "TLV",
  709. "since" : "1.14",
  710. "format" : "array",
  711. "size-prefix-format" : "guint16",
  712. "array-element" : { "format" : "guint8" },
  713. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  714. // *********************************************************************************
  715. { "name" : "Start Network",
  716. "type" : "Message",
  717. "service" : "WDS",
  718. "id" : "0x0020",
  719. "since" : "1.0",
  720. // This method may be aborted
  721. "abort" : "yes",
  722. "input" : [ { "name" : "Primary DNS Address Preference",
  723. "id" : "0x10",
  724. "type" : "TLV",
  725. "since" : "1.0",
  726. "format" : "guint32" },
  727. { "name" : "Secondary DNS Address Preference",
  728. "id" : "0x11",
  729. "type" : "TLV",
  730. "since" : "1.0",
  731. "format" : "guint32" },
  732. { "name" : "Primary NBNS Address Preference",
  733. "id" : "0x12",
  734. "type" : "TLV",
  735. "since" : "1.0",
  736. "format" : "guint32" },
  737. { "name" : "Secondary NBNS Address Preference",
  738. "id" : "0x13",
  739. "type" : "TLV",
  740. "since" : "1.0",
  741. "format" : "guint32" },
  742. { "name" : "APN",
  743. "id" : "0x14",
  744. "type" : "TLV",
  745. "since" : "1.0",
  746. "format" : "string" },
  747. { "name" : "IPv4 Address Preference",
  748. "id" : "0x15",
  749. "type" : "TLV",
  750. "since" : "1.0",
  751. "format" : "guint32" },
  752. { "name" : "Authentication Preference",
  753. "id" : "0x16",
  754. "type" : "TLV",
  755. "since" : "1.0",
  756. "format" : "guint8",
  757. "public-format" : "QmiWdsAuthentication" },
  758. { "name" : "Username",
  759. "id" : "0x17",
  760. "type" : "TLV",
  761. "since" : "1.0",
  762. "format" : "string",
  763. "personal-info" : "true" },
  764. { "name" : "Password",
  765. "id" : "0x18",
  766. "type" : "TLV",
  767. "since" : "1.0",
  768. "format" : "string",
  769. "personal-info" : "true" },
  770. { "name" : "IP Family Preference",
  771. "id" : "0x19",
  772. "type" : "TLV",
  773. "since" : "1.0",
  774. "format" : "guint8",
  775. "public-format" : "QmiWdsIpFamily" },
  776. { "name" : "Technology Preference",
  777. "id" : "0x30",
  778. "type" : "TLV",
  779. "since" : "1.0",
  780. "format" : "guint8",
  781. "public-format" : "QmiWdsTechnologyPreference" },
  782. { "name" : "Profile Index 3GPP",
  783. "id" : "0x31",
  784. "type" : "TLV",
  785. "since" : "1.0",
  786. "format" : "guint8" },
  787. { "name" : "Profile Index 3GPP2",
  788. "id" : "0x32",
  789. "type" : "TLV",
  790. "since" : "1.0",
  791. "format" : "guint8" },
  792. { "name" : "Enable Autoconnect",
  793. "id" : "0x33",
  794. "type" : "TLV",
  795. "since" : "1.0",
  796. "format" : "guint8",
  797. "public-format" : "gboolean" },
  798. { "name" : "Extended Technology Preference",
  799. "id" : "0x34",
  800. "type" : "TLV",
  801. "since" : "1.0",
  802. // Note: docs give this as gint16 with negative enum values. Instead, we use
  803. // guint16 with equivalent positive enum values.
  804. "format" : "guint16",
  805. "public-format" : "QmiWdsExtendedTechnologyPreference" },
  806. { "name" : "Call Type",
  807. "id" : "0x35",
  808. "type" : "TLV",
  809. "since" : "1.0",
  810. "format" : "guint8",
  811. "public-format" : "QmiWdsCallType" } ],
  812. "output" : [ { "common-ref" : "Operation Result" },
  813. { "name" : "Packet Data Handle",
  814. "id" : "0x01",
  815. "type" : "TLV",
  816. "since" : "1.0",
  817. "format" : "guint32",
  818. "prerequisites": [ { "common-ref" : "Success" } ] },
  819. { "name" : "Call End Reason",
  820. "id" : "0x10",
  821. "type" : "TLV",
  822. "since" : "1.0",
  823. "format" : "guint16",
  824. "public-format" : "QmiWdsCallEndReason",
  825. "prerequisites" : [ { "field" : "Result Error Status",
  826. "operation" : "!=",
  827. "value" : "QMI_STATUS_SUCCESS" },
  828. { "field" : "Result Error Code",
  829. "operation" : "==",
  830. "value" : "QMI_PROTOCOL_ERROR_CALL_FAILED" } ] },
  831. { "name" : "Verbose Call End Reason",
  832. "id" : "0x11",
  833. "type" : "TLV",
  834. "since" : "1.0",
  835. "format" : "sequence",
  836. "contents" : [ { "name" : "Type",
  837. "format" : "guint16",
  838. "public-format" : "QmiWdsVerboseCallEndReasonType" },
  839. { "name" : "Reason",
  840. "format" : "gint16" } ],
  841. "prerequisites": [ { "field" : "Result Error Status",
  842. "operation" : "!=",
  843. "value" : "QMI_STATUS_SUCCESS" },
  844. { "field" : "Result Error Code",
  845. "operation" : "==",
  846. "value" : "QMI_PROTOCOL_ERROR_CALL_FAILED" } ] } ] },
  847. // *********************************************************************************
  848. { "name" : "Stop Network",
  849. "type" : "Message",
  850. "service" : "WDS",
  851. "id" : "0x0021",
  852. "since" : "1.0",
  853. "input" : [ { "name" : "Packet Data Handle",
  854. "id" : "0x01",
  855. "type" : "TLV",
  856. "since" : "1.0",
  857. "format" : "guint32" },
  858. { "name" : "Disable Autoconnect",
  859. "id" : "0x10",
  860. "type" : "TLV",
  861. "since" : "1.0",
  862. "format" : "guint8",
  863. "public-format" : "gboolean" } ],
  864. "output" : [ { "common-ref" : "Operation Result" } ] },
  865. // *********************************************************************************
  866. { "name" : "Get Packet Service Status",
  867. "type" : "Message",
  868. "service" : "WDS",
  869. "id" : "0x0022",
  870. "since" : "1.0",
  871. "output" : [ { "common-ref" : "Operation Result" },
  872. { "name" : "Connection Status",
  873. "id" : "0x01",
  874. "type" : "TLV",
  875. "since" : "1.0",
  876. "format" : "guint8",
  877. "public-format" : "QmiWdsConnectionStatus",
  878. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  879. { "name" : "Packet Service Status",
  880. "type" : "Indication",
  881. "service" : "WDS",
  882. "id" : "0x0022",
  883. "since" : "1.14",
  884. "output" : [ { "name" : "Connection Status",
  885. "id" : "0x01",
  886. "type" : "TLV",
  887. "since" : "1.14",
  888. "format" : "sequence",
  889. "contents" : [ { "name" : "Status",
  890. "format" : "guint8",
  891. "public-format" : "QmiWdsConnectionStatus" },
  892. { "name" : "Reconfiguration Required",
  893. "format" : "guint8",
  894. "public-format" : "gboolean" } ] },
  895. { "name" : "Call End Reason",
  896. "id" : "0x10",
  897. "type" : "TLV",
  898. "since" : "1.14",
  899. "format" : "guint16",
  900. "public-format" : "QmiWdsCallEndReason" },
  901. { "name" : "Verbose Call End Reason",
  902. "id" : "0x11",
  903. "type" : "TLV",
  904. "since" : "1.14",
  905. "format" : "sequence",
  906. "contents" : [ { "name" : "Type",
  907. "format" : "guint16",
  908. "public-format" : "QmiWdsVerboseCallEndReasonType" },
  909. { "name" : "Reason",
  910. "format" : "gint16" } ] },
  911. { "name" : "IP Family",
  912. "id" : "0x12",
  913. "type" : "TLV",
  914. "since" : "1.14",
  915. "format" : "guint8",
  916. "public-format" : "QmiWdsIpFamily" },
  917. { "name" : "Extended Technology Preference",
  918. "id" : "0x34",
  919. "type" : "TLV",
  920. "since" : "1.14",
  921. // Note: docs give this as gint16 with negative enum values. Instead, we use
  922. // guint16 with equivalent positive enum values.
  923. "format" : "guint16",
  924. "public-format" : "QmiWdsExtendedTechnologyPreference" } ] },
  925. // *********************************************************************************
  926. { "name" : "Get Channel Rates",
  927. "type" : "Message",
  928. "service" : "WDS",
  929. "id" : "0x0023",
  930. "since" : "1.20",
  931. "output" : [ { "common-ref" : "Operation Result" },
  932. { "name" : "Channel Rates",
  933. "id" : "0x01",
  934. "type" : "TLV",
  935. "since" : "1.0",
  936. "format" : "sequence",
  937. "contents" : [ { "name" : "Channel TX Rate BPS",
  938. "format" : "guint32" },
  939. { "name" : "Channel RX Rate BPS",
  940. "format" : "guint32" },
  941. { "name" : "Max Channel TX Rate BPS",
  942. "format" : "guint32" },
  943. { "name" : "Max Channel RX Rate BPS",
  944. "format" : "guint32" } ] } ] },
  945. // *********************************************************************************
  946. { "name" : "Get Packet Statistics",
  947. "type" : "Message",
  948. "service" : "WDS",
  949. "id" : "0x0024",
  950. "since" : "1.6",
  951. "input" : [ { "name" : "Mask",
  952. "id" : "0x01",
  953. "type" : "TLV",
  954. "since" : "1.6",
  955. "format" : "guint32",
  956. "public-format" : "QmiWdsPacketStatisticsMaskFlag" } ],
  957. "output" : [ { "common-ref" : "Operation Result" },
  958. { "name" : "Tx Packets Ok",
  959. "id" : "0x10",
  960. "type" : "TLV",
  961. "since" : "1.6",
  962. "format" : "guint32",
  963. "prerequisites" : [ { "common-ref" : "Success" } ] },
  964. { "name" : "Rx Packets Ok",
  965. "id" : "0x11",
  966. "type" : "TLV",
  967. "since" : "1.6",
  968. "format" : "guint32",
  969. "prerequisites" : [ { "common-ref" : "Success" } ] },
  970. { "name" : "Tx Packets Error",
  971. "id" : "0x12",
  972. "type" : "TLV",
  973. "since" : "1.6",
  974. "format" : "guint32",
  975. "prerequisites" : [ { "common-ref" : "Success" } ] },
  976. { "name" : "Rx Packets Error",
  977. "id" : "0x13",
  978. "type" : "TLV",
  979. "since" : "1.6",
  980. "format" : "guint32",
  981. "prerequisites" : [ { "common-ref" : "Success" } ] },
  982. { "name" : "Tx Overflows",
  983. "id" : "0x14",
  984. "type" : "TLV",
  985. "since" : "1.6",
  986. "format" : "guint32",
  987. "prerequisites" : [ { "common-ref" : "Success" } ] },
  988. { "name" : "Rx Overflows",
  989. "id" : "0x15",
  990. "type" : "TLV",
  991. "since" : "1.6",
  992. "format" : "guint32",
  993. "prerequisites" : [ { "common-ref" : "Success" } ] },
  994. { "name" : "Tx Bytes Ok",
  995. "id" : "0x19",
  996. "type" : "TLV",
  997. "since" : "1.6",
  998. "format" : "guint64",
  999. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1000. { "name" : "Rx Bytes Ok",
  1001. "id" : "0x1A",
  1002. "type" : "TLV",
  1003. "since" : "1.6",
  1004. "format" : "guint64",
  1005. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1006. // Note: last call TX/RX given along with QMI Error 'out of call'
  1007. { "name" : "Last Call Tx Bytes Ok",
  1008. "id" : "0x1B",
  1009. "type" : "TLV",
  1010. "since" : "1.6",
  1011. "format" : "guint64" },
  1012. { "name" : "Last Call Rx Bytes Ok",
  1013. "id" : "0x1C",
  1014. "type" : "TLV",
  1015. "since" : "1.6",
  1016. "format" : "guint64" },
  1017. { "name" : "Tx Packets Dropped",
  1018. "id" : "0x1D",
  1019. "type" : "TLV",
  1020. "since" : "1.6",
  1021. "format" : "guint32",
  1022. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1023. { "name" : "Rx Packets Dropped",
  1024. "id" : "0x1E",
  1025. "type" : "TLV",
  1026. "since" : "1.6",
  1027. "format" : "guint32",
  1028. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  1029. // *********************************************************************************
  1030. { "name" : "Go Dormant",
  1031. "type" : "Message",
  1032. "service" : "WDS",
  1033. "id" : "0x0025",
  1034. "since" : "1.18",
  1035. "output" : [ { "common-ref" : "Operation Result" } ] },
  1036. // *********************************************************************************
  1037. { "name" : "Go Active",
  1038. "type" : "Message",
  1039. "service" : "WDS",
  1040. "id" : "0x0026",
  1041. "since" : "1.18",
  1042. "output" : [ { "common-ref" : "Operation Result" } ] },
  1043. // *********************************************************************************
  1044. { "name" : "Create Profile",
  1045. "type" : "Message",
  1046. "service" : "WDS",
  1047. "id" : "0x0027",
  1048. "since" : "1.18",
  1049. "input" : [ { "name" : "Profile Type",
  1050. "id" : "0x01",
  1051. "type" : "TLV",
  1052. "since" : "1.18",
  1053. "format" : "guint8",
  1054. "public-format" : "QmiWdsProfileType" },
  1055. { "common-ref" : "WDS Profile Name",
  1056. "since" : "1.18" },
  1057. { "common-ref" : "WDS PDP Type",
  1058. "since" : "1.18" },
  1059. { "common-ref" : "WDS PDP Header Compression Type",
  1060. "since" : "1.18" },
  1061. { "common-ref" : "WDS PDP Data Compression Type",
  1062. "since" : "1.18" },
  1063. { "common-ref" : "WDS APN Name",
  1064. "since" : "1.18" },
  1065. { "common-ref" : "WDS Primary IPv4 DNS Address",
  1066. "since" : "1.18" },
  1067. { "common-ref" : "WDS Secondary IPv4 DNS Address",
  1068. "since" : "1.18" },
  1069. { "common-ref" : "WDS UMTS Requested QoS",
  1070. "since" : "1.18" },
  1071. { "common-ref" : "WDS UMTS Minimum QoS",
  1072. "since" : "1.18" },
  1073. { "common-ref" : "WDS GPRS Requested QoS",
  1074. "since" : "1.18" },
  1075. { "common-ref" : "WDS GPRS Minimum QoS",
  1076. "since" : "1.18" },
  1077. { "common-ref" : "WDS Username",
  1078. "since" : "1.18" },
  1079. { "common-ref" : "WDS Password",
  1080. "since" : "1.18" },
  1081. { "common-ref" : "WDS Authentication",
  1082. "since" : "1.18" },
  1083. { "common-ref" : "WDS IPv4 Address Preference",
  1084. "since" : "1.18" },
  1085. { "common-ref" : "WDS PCSCF Address Using PCO",
  1086. "since" : "1.18" },
  1087. // 0x20, PDP access control flag
  1088. { "common-ref" : "WDS PCSCF Address Using DHCP",
  1089. "since" : "1.18" },
  1090. { "common-ref" : "WDS IMCN Flag",
  1091. "since" : "1.18" },
  1092. // 0x23, TFT ID1 Parameters
  1093. // 0x24, TFT ID2 Parameters
  1094. { "common-ref" : "WDS PDP Context Number",
  1095. "since" : "1.18" },
  1096. { "common-ref" : "WDS PDP Context Secondary Flag",
  1097. "since" : "1.18" },
  1098. { "common-ref" : "WDS PDP Context Primary ID",
  1099. "since" : "1.18" },
  1100. { "common-ref" : "WDS IPv6 Address Preference",
  1101. "since" : "1.18" },
  1102. { "common-ref" : "WDS UMTS Requested QoS With Signaling Indication Flag",
  1103. "since" : "1.18" },
  1104. { "common-ref" : "WDS UMTS Minimum QoS With Signaling Indication Flag",
  1105. "since" : "1.18" },
  1106. { "common-ref" : "WDS IPv6 Primary DNS Address Preference",
  1107. "since" : "1.18" },
  1108. { "common-ref" : "WDS IPv6 Secondary DNS Address Preference",
  1109. "since" : "1.18" },
  1110. // 0x2D, DHCP/NAS Preference
  1111. { "common-ref" : "WDS LTE QoS Parameters",
  1112. "since" : "1.18" },
  1113. { "common-ref" : "WDS APN Disabled Flag",
  1114. "since" : "1.22" },
  1115. // 0x30, PDN inactivity timeout
  1116. // 0x31, APN class
  1117. { "common-ref" : "WDS Roaming Disallowed Flag",
  1118. "since" : "1.22" },
  1119. // 0x90, Negotiate DNS server preference
  1120. // 0x91, PPP session close timer for DO
  1121. // 0x92, PPP session close timer for 1X
  1122. // 0x93, Allow/disallow lingering of interface
  1123. // 0x94, LCP ACK timeout
  1124. // 0x95, IPCP ACK timeout
  1125. // 0x96, AUTH timeout
  1126. // 0x97, LCP configuration request retry count value
  1127. // 0x98, IPCP configuration request retry count value
  1128. // 0x99, Authentication retry
  1129. // 0x9A, Authentication protocol,
  1130. // 0x9B, User ID
  1131. // 0x9C, Authentication password
  1132. // 0x9D, Data rate
  1133. // 0x9E, Application type
  1134. // 0x9F, Data mode
  1135. // 0xA0, Application priority
  1136. // 0xA1, APN string
  1137. // 0xA2, PDN type
  1138. // 0xA3, Is PCSCF address needed
  1139. // 0xA4, IPv4 Primary DNS address
  1140. // 0xA5, IPv4 Secondary DNS address
  1141. // 0xA6, IPv6 Primary DNS address
  1142. // 0xA7, IPv6 Secondary DNS address
  1143. // 0xA8, RAT type
  1144. // 0xA9, APN enabled
  1145. // 0xAA, PDN inactivity timeout
  1146. // 0xAB, APN class
  1147. { "common-ref" : "WDS APN Type",
  1148. "since" : "1.30" } ],
  1149. "output" : [ { "common-ref" : "Operation Result" },
  1150. { "common-ref" : "WDS Profile Identifier",
  1151. "since" : "1.18",
  1152. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1153. { "common-ref" : "WDS Extended Error Code",
  1154. "since" : "1.18" } ] },
  1155. // *********************************************************************************
  1156. { "name" : "Modify Profile",
  1157. "type" : "Message",
  1158. "service" : "WDS",
  1159. "id" : "0x0028",
  1160. "since" : "1.18",
  1161. "input" : [ { "common-ref" : "WDS Profile Identifier",
  1162. "since" : "1.18" },
  1163. { "common-ref" : "WDS Profile Name",
  1164. "since" : "1.18" },
  1165. { "common-ref" : "WDS PDP Type",
  1166. "since" : "1.18" },
  1167. { "common-ref" : "WDS PDP Header Compression Type",
  1168. "since" : "1.18" },
  1169. { "common-ref" : "WDS PDP Data Compression Type",
  1170. "since" : "1.18" },
  1171. { "common-ref" : "WDS APN Name",
  1172. "since" : "1.18" },
  1173. { "common-ref" : "WDS Primary IPv4 DNS Address",
  1174. "since" : "1.18" },
  1175. { "common-ref" : "WDS Secondary IPv4 DNS Address",
  1176. "since" : "1.18" },
  1177. { "common-ref" : "WDS UMTS Requested QoS",
  1178. "since" : "1.18" },
  1179. { "common-ref" : "WDS UMTS Minimum QoS",
  1180. "since" : "1.18" },
  1181. { "common-ref" : "WDS GPRS Requested QoS",
  1182. "since" : "1.18" },
  1183. { "common-ref" : "WDS GPRS Minimum QoS",
  1184. "since" : "1.18" },
  1185. { "common-ref" : "WDS Username",
  1186. "since" : "1.18" },
  1187. { "common-ref" : "WDS Password",
  1188. "since" : "1.18" },
  1189. { "common-ref" : "WDS Authentication",
  1190. "since" : "1.18" },
  1191. { "common-ref" : "WDS IPv4 Address Preference",
  1192. "since" : "1.18" },
  1193. { "common-ref" : "WDS PCSCF Address Using PCO",
  1194. "since" : "1.18" },
  1195. // 0x20, PDP access control flag
  1196. { "common-ref" : "WDS PCSCF Address Using DHCP",
  1197. "since" : "1.18" },
  1198. { "common-ref" : "WDS IMCN Flag",
  1199. "since" : "1.18" },
  1200. // 0x23, TFT ID1 Parameters
  1201. // 0x24, TFT ID2 Parameters
  1202. { "common-ref" : "WDS PDP Context Number",
  1203. "since" : "1.18" },
  1204. { "common-ref" : "WDS PDP Context Secondary Flag",
  1205. "since" : "1.18" },
  1206. { "common-ref" : "WDS PDP Context Primary ID",
  1207. "since" : "1.18" },
  1208. { "common-ref" : "WDS IPv6 Address Preference",
  1209. "since" : "1.18" },
  1210. { "common-ref" : "WDS UMTS Requested QoS With Signaling Indication Flag",
  1211. "since" : "1.18" },
  1212. { "common-ref" : "WDS UMTS Minimum QoS With Signaling Indication Flag",
  1213. "since" : "1.18" },
  1214. { "common-ref" : "WDS IPv6 Primary DNS Address Preference",
  1215. "since" : "1.18" },
  1216. { "common-ref" : "WDS IPv6 Secondary DNS Address Preference",
  1217. "since" : "1.18" },
  1218. // 0x2D, DHCP/NAS Preference
  1219. { "common-ref" : "WDS LTE QoS Parameters",
  1220. "since" : "1.18" },
  1221. { "common-ref" : "WDS APN Disabled Flag",
  1222. "since" : "1.22" },
  1223. // 0x30, PDN inactivity timeout
  1224. // 0x31, APN class
  1225. { "common-ref" : "WDS Roaming Disallowed Flag",
  1226. "since" : "1.22" },
  1227. // 0x90, Negotiate DNS server preference
  1228. // 0x91, PPP session close timer for DO
  1229. // 0x92, PPP session close timer for 1X
  1230. // 0x93, Allow/disallow lingering of interface
  1231. // 0x94, LCP ACK timeout
  1232. // 0x95, IPCP ACK timeout
  1233. // 0x96, AUTH timeout
  1234. // 0x97, LCP configuration request retry count value
  1235. // 0x98, IPCP configuration request retry count value
  1236. // 0x99, Authentication retry
  1237. // 0x9A, Authentication protocol,
  1238. // 0x9B, User ID
  1239. // 0x9C, Authentication password
  1240. // 0x9D, Data rate
  1241. // 0x9E, Application type
  1242. // 0x9F, Data mode
  1243. // 0xA0, Application priority
  1244. // 0xA1, APN string
  1245. // 0xA2, PDN type
  1246. // 0xA3, Is PCSCF address needed
  1247. // 0xA4, IPv4 Primary DNS address
  1248. // 0xA5, IPv4 Secondary DNS address
  1249. // 0xA6, IPv6 Primary DNS address
  1250. // 0xA7, IPv6 Secondary DNS address
  1251. // 0xA8, RAT type
  1252. // 0xA9, APN enabled
  1253. // 0xAA, PDN inactivity timeout
  1254. // 0xAB, APN class
  1255. { "common-ref" : "WDS APN Type",
  1256. "since" : "1.30" } ],
  1257. "output" : [ { "common-ref" : "Operation Result" },
  1258. { "common-ref" : "WDS Extended Error Code",
  1259. "since" : "1.18" } ] },
  1260. // *********************************************************************************
  1261. { "name" : "Delete Profile",
  1262. "type" : "Message",
  1263. "service" : "WDS",
  1264. "id" : "0x0029",
  1265. "since" : "1.18",
  1266. "input" : [ { "common-ref" : "WDS Profile Identifier",
  1267. "since" : "1.18" } ],
  1268. "output" : [ { "common-ref" : "Operation Result" },
  1269. { "common-ref" : "WDS Extended Error Code",
  1270. "since" : "1.18" } ] },
  1271. // *********************************************************************************
  1272. { "name" : "Get Profile List",
  1273. "type" : "Message",
  1274. "service" : "WDS",
  1275. "id" : "0x002A",
  1276. "since" : "1.8",
  1277. "input" : [ { "name" : "Profile Type",
  1278. "id" : "0x10",
  1279. "type" : "TLV",
  1280. "since" : "1.8",
  1281. "format" : "guint8",
  1282. "public-format" : "QmiWdsProfileType" } ],
  1283. "output" : [ { "common-ref" : "Operation Result" },
  1284. { "name" : "Profile List",
  1285. "id" : "0x01",
  1286. "type" : "TLV",
  1287. "since" : "1.8",
  1288. "format" : "array",
  1289. "size-prefix-format" : "guint8",
  1290. "array-element" : { "name" : "Profile",
  1291. "format" : "struct",
  1292. "contents" : [ { "name" : "Profile Type",
  1293. "format" : "guint8",
  1294. "public-format" : "QmiWdsProfileType" },
  1295. { "name" : "Profile Index",
  1296. "format" : "guint8" },
  1297. { "name" : "Profile Name",
  1298. "format" : "string" } ] },
  1299. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1300. { "common-ref" : "WDS Extended Error Code",
  1301. "since" : "1.8" } ] },
  1302. // *********************************************************************************
  1303. { "name" : "Get Profile Settings",
  1304. "type" : "Message",
  1305. "service" : "WDS",
  1306. "id" : "0x002B",
  1307. "since" : "1.8",
  1308. "input" : [ { "name" : "Profile ID",
  1309. "id" : "0x01",
  1310. "type" : "TLV",
  1311. "since" : "1.8",
  1312. "format" : "sequence",
  1313. "contents" : [ { "name" : "Profile Type",
  1314. "format" : "guint8",
  1315. "public-format" : "QmiWdsProfileType" },
  1316. { "name" : "Profile Index",
  1317. "format" : "guint8" } ] } ],
  1318. "output" : [ { "common-ref" : "Operation Result" },
  1319. { "common-ref" : "WDS Profile Name",
  1320. "since" : "1.8",
  1321. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1322. { "common-ref" : "WDS PDP Type",
  1323. "since" : "1.8",
  1324. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1325. { "common-ref" : "WDS PDP Header Compression Type",
  1326. "since" : "1.18",
  1327. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1328. { "common-ref" : "WDS PDP Data Compression Type",
  1329. "since" : "1.18",
  1330. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1331. { "common-ref" : "WDS APN Name",
  1332. "since" : "1.8",
  1333. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1334. { "common-ref" : "WDS Primary IPv4 DNS Address",
  1335. "since" : "1.8",
  1336. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1337. { "common-ref" : "WDS Secondary IPv4 DNS Address",
  1338. "since" : "1.8",
  1339. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1340. { "common-ref" : "WDS UMTS Requested QoS",
  1341. "since" : "1.18",
  1342. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1343. { "common-ref" : "WDS UMTS Minimum QoS",
  1344. "since" : "1.18",
  1345. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1346. { "common-ref" : "WDS GPRS Requested QoS",
  1347. "since" : "1.8",
  1348. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1349. { "common-ref" : "WDS GPRS Minimum QoS",
  1350. "since" : "1.8",
  1351. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1352. { "common-ref" : "WDS Username",
  1353. "since" : "1.8",
  1354. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1355. { "common-ref" : "WDS Password",
  1356. "since" : "1.8",
  1357. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1358. { "common-ref" : "WDS Authentication",
  1359. "since" : "1.8",
  1360. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1361. { "common-ref" : "WDS IPv4 Address Preference",
  1362. "since" : "1.8",
  1363. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1364. { "common-ref" : "WDS PCSCF Address Using PCO",
  1365. "since" : "1.8",
  1366. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1367. // 0x20, PDP access control flag
  1368. { "common-ref" : "WDS PCSCF Address Using DHCP",
  1369. "since" : "1.8",
  1370. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1371. { "common-ref" : "WDS IMCN Flag",
  1372. "since" : "1.8",
  1373. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1374. // 0x23, TFT ID1 Parameters
  1375. // 0x24, TFT ID2 Parameters
  1376. { "common-ref" : "WDS PDP Context Number",
  1377. "since" : "1.18",
  1378. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1379. { "common-ref" : "WDS PDP Context Secondary Flag",
  1380. "since" : "1.18",
  1381. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1382. { "common-ref" : "WDS PDP Context Primary ID",
  1383. "since" : "1.18",
  1384. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1385. { "common-ref" : "WDS IPv6 Address Preference",
  1386. "since" : "1.8",
  1387. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1388. { "common-ref" : "WDS UMTS Requested QoS With Signaling Indication Flag",
  1389. "since" : "1.18",
  1390. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1391. { "common-ref" : "WDS UMTS Minimum QoS With Signaling Indication Flag",
  1392. "since" : "1.18",
  1393. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1394. { "common-ref" : "WDS IPv6 Primary DNS Address Preference",
  1395. "since" : "1.8",
  1396. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1397. { "common-ref" : "WDS IPv6 Secondary DNS Address Preference",
  1398. "since" : "1.8",
  1399. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1400. // 0x2D, DHCP/NAS Preference
  1401. { "common-ref" : "WDS LTE QoS Parameters",
  1402. "since" : "1.18",
  1403. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1404. { "common-ref" : "WDS APN Disabled Flag",
  1405. "since" : "1.22",
  1406. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1407. // 0x30, PDN inactivity timeout
  1408. // 0x31, APN class
  1409. { "common-ref" : "WDS Roaming Disallowed Flag",
  1410. "since" : "1.22",
  1411. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1412. // 0x90, Negotiate DNS server preference
  1413. // 0x91, PPP session close timer for DO
  1414. // 0x92, PPP session close timer for 1X
  1415. // 0x93, Allow/disallow lingering of interface
  1416. // 0x94, LCP ACK timeout
  1417. // 0x95, IPCP ACK timeout
  1418. // 0x96, AUTH timeout
  1419. // 0x97, LCP configuration request retry count value
  1420. // 0x98, IPCP configuration request retry count value
  1421. // 0x99, Authentication retry
  1422. // 0x9A, Authentication protocol,
  1423. // 0x9B, User ID
  1424. // 0x9C, Authentication password
  1425. // 0x9D, Data rate
  1426. // 0x9E, Application type
  1427. // 0x9F, Data mode
  1428. // 0xA0, Application priority
  1429. // 0xA1, APN string
  1430. // 0xA2, PDN type
  1431. // 0xA3, Is PCSCF address needed
  1432. // 0xA4, IPv4 Primary DNS address
  1433. // 0xA5, IPv4 Secondary DNS address
  1434. // 0xA6, IPv6 Primary DNS address
  1435. // 0xA7, IPv6 Secondary DNS address
  1436. // 0xA8, RAT type
  1437. // 0xA9, APN enabled
  1438. // 0xAA, PDN inactivity timeout
  1439. // 0xAB, APN class
  1440. { "common-ref" : "WDS APN Type",
  1441. "since" : "1.30",
  1442. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1443. { "common-ref" : "WDS Extended Error Code",
  1444. "since" : "1.8" } ] },
  1445. // *********************************************************************************
  1446. { "name" : "Get Default Settings",
  1447. "type" : "Message",
  1448. "service" : "WDS",
  1449. "id" : "0x002C",
  1450. "since" : "1.8",
  1451. "input" : [ { "name" : "Profile Type",
  1452. "id" : "0x01",
  1453. "type" : "TLV",
  1454. "since" : "1.8",
  1455. "format" : "guint8",
  1456. "public-format" : "QmiWdsProfileType" } ],
  1457. "output" : [ { "common-ref" : "Operation Result" },
  1458. { "common-ref" : "WDS Profile Name",
  1459. "since" : "1.8",
  1460. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1461. { "common-ref" : "WDS PDP Type",
  1462. "since" : "1.8",
  1463. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1464. { "common-ref" : "WDS PDP Header Compression Type",
  1465. "since" : "1.18",
  1466. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1467. { "common-ref" : "WDS PDP Data Compression Type",
  1468. "since" : "1.18",
  1469. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1470. { "common-ref" : "WDS APN Name",
  1471. "since" : "1.8",
  1472. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1473. { "common-ref" : "WDS Primary IPv4 DNS Address",
  1474. "since" : "1.8",
  1475. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1476. { "common-ref" : "WDS Secondary IPv4 DNS Address",
  1477. "since" : "1.8",
  1478. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1479. { "common-ref" : "WDS UMTS Requested QoS",
  1480. "since" : "1.18",
  1481. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1482. { "common-ref" : "WDS UMTS Minimum QoS",
  1483. "since" : "1.18",
  1484. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1485. { "common-ref" : "WDS GPRS Requested QoS",
  1486. "since" : "1.8",
  1487. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1488. { "common-ref" : "WDS GPRS Minimum QoS",
  1489. "since" : "1.8",
  1490. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1491. { "common-ref" : "WDS Username",
  1492. "since" : "1.8",
  1493. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1494. { "common-ref" : "WDS Password",
  1495. "since" : "1.8",
  1496. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1497. { "common-ref" : "WDS Authentication",
  1498. "since" : "1.8",
  1499. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1500. { "common-ref" : "WDS IPv4 Address Preference",
  1501. "since" : "1.8",
  1502. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1503. { "common-ref" : "WDS PCSCF Address Using PCO",
  1504. "since" : "1.8",
  1505. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1506. // 0x20, PDP access control flag
  1507. { "common-ref" : "WDS PCSCF Address Using DHCP",
  1508. "since" : "1.8",
  1509. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1510. { "common-ref" : "WDS IMCN Flag",
  1511. "since" : "1.8",
  1512. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1513. // 0x23, TFT ID1 Parameters
  1514. // 0x24, TFT ID2 Parameters
  1515. { "common-ref" : "WDS PDP Context Number",
  1516. "since" : "1.18",
  1517. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1518. { "common-ref" : "WDS PDP Context Secondary Flag",
  1519. "since" : "1.18",
  1520. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1521. { "common-ref" : "WDS PDP Context Primary ID",
  1522. "since" : "1.18",
  1523. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1524. { "common-ref" : "WDS IPv6 Address Preference",
  1525. "since" : "1.8",
  1526. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1527. { "common-ref" : "WDS UMTS Requested QoS With Signaling Indication Flag",
  1528. "since" : "1.18",
  1529. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1530. { "common-ref" : "WDS UMTS Minimum QoS With Signaling Indication Flag",
  1531. "since" : "1.18",
  1532. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1533. { "common-ref" : "WDS IPv6 Primary DNS Address Preference",
  1534. "since" : "1.8",
  1535. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1536. { "common-ref" : "WDS IPv6 Secondary DNS Address Preference",
  1537. "since" : "1.8",
  1538. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1539. // 0x2D, DHCP/NAS Preference
  1540. { "common-ref" : "WDS LTE QoS Parameters",
  1541. "since" : "1.18",
  1542. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1543. // 0x2F, APN disabled flag
  1544. // 0x30, PDN inactivity timeout
  1545. // 0x31, APN class
  1546. // 0x90, Negotiate DNS server preference
  1547. // 0x91, PPP session close timer for DO
  1548. // 0x92, PPP session close timer for 1X
  1549. // 0x93, Allow/disallow lingering of interface
  1550. // 0x94, LCP ACK timeout
  1551. // 0x95, IPCP ACK timeout
  1552. // 0x96, AUTH timeout
  1553. // 0x97, LCP configuration request retry count value
  1554. // 0x98, IPCP configuration request retry count value
  1555. // 0x99, Authentication retry
  1556. // 0x9A, Authentication protocol,
  1557. // 0x9B, User ID
  1558. // 0x9C, Authentication password
  1559. // 0x9D, Data rate
  1560. // 0x9E, Application type
  1561. // 0x9F, Data mode
  1562. // 0xA0, Application priority
  1563. // 0xA1, APN string
  1564. // 0xA2, PDN type
  1565. // 0xA3, Is PCSCF address needed
  1566. // 0xA4, IPv4 Primary DNS address
  1567. // 0xA5, IPv4 Secondary DNS address
  1568. // 0xA6, IPv6 Primary DNS address
  1569. // 0xA7, IPv6 Secondary DNS address
  1570. // 0xA8, RAT type
  1571. // 0xA9, APN enabled
  1572. // 0xAA, PDN inactivity timeout
  1573. // 0xAB, APN class
  1574. { "common-ref" : "WDS Extended Error Code",
  1575. "since" : "1.8" } ] },
  1576. // *********************************************************************************
  1577. { "name" : "Get Current Settings",
  1578. "type" : "Message",
  1579. "service" : "WDS",
  1580. "id" : "0x002D",
  1581. "since" : "1.0",
  1582. "input" : [ { "name" : "Requested Settings",
  1583. "id" : "0x10",
  1584. "mandatory" : "yes",
  1585. "type" : "TLV",
  1586. "since" : "1.0",
  1587. "format" : "guint32",
  1588. "public-format" : "QmiWdsRequestedSettings" } ],
  1589. "output" : [ { "common-ref" : "Operation Result" },
  1590. { "common-ref" : "WDS Profile Name",
  1591. "since" : "1.0",
  1592. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1593. { "common-ref" : "WDS PDP Type",
  1594. "since" : "1.0",
  1595. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1596. { "common-ref" : "WDS APN Name",
  1597. "since" : "1.0",
  1598. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1599. { "common-ref" : "WDS Primary IPv4 DNS Address",
  1600. "since" : "1.0",
  1601. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1602. { "common-ref" : "WDS Secondary IPv4 DNS Address",
  1603. "since" : "1.0",
  1604. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1605. { "name" : "UMTS Granted QoS",
  1606. "id" : "0x17",
  1607. "type" : "TLV",
  1608. "since" : "1.14",
  1609. "format" : "sequence",
  1610. "contents" : [ { "name" : "Traffic Class",
  1611. "format" : "guint8",
  1612. "public-format" : "QmiWdsTrafficClass" },
  1613. { "name" : "Max uplink bitrate",
  1614. "format" : "guint32" },
  1615. { "name" : "Max downlink bitrate",
  1616. "format" : "guint32" },
  1617. { "name" : "Guaranteed uplink bitrate",
  1618. "format" : "guint32" },
  1619. { "name" : "Guaranteed downlink bitrate",
  1620. "format" : "guint32" },
  1621. { "name" : "QoS Delivery Order",
  1622. "format" : "guint8",
  1623. "public-format" : "QmiWdsDeliveryOrder" },
  1624. { "name" : "Maximum SDU Size",
  1625. "format" : "guint32" },
  1626. { "name" : "SDU Error Ratio",
  1627. "format" : "guint8",
  1628. "public-format" : "QmiWdsSduErrorRatio" },
  1629. { "name" : "Residual Bit Error Ratio",
  1630. "format" : "guint8",
  1631. "public-format" : "QmiWdsSduResidualBitErrorRatio" },
  1632. { "name" : "Delivery Erroneous SDU",
  1633. "format" : "guint8",
  1634. "public-format" : "QmiWdsSduErroneousDelivery" },
  1635. { "name" : "Transfer Delay",
  1636. "format" : "guint32" },
  1637. { "name" : "Traffic Handling Priority",
  1638. "format" : "guint32" } ],
  1639. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1640. { "name" : "GPRS Granted QoS",
  1641. "id" : "0x19",
  1642. "type" : "TLV",
  1643. "since" : "1.0",
  1644. "format" : "sequence",
  1645. "contents" : [ { "name" : "Precedence Class",
  1646. "format" : "guint32" },
  1647. { "name" : "Delay Class",
  1648. "format" : "guint32" },
  1649. { "name" : "Reliability Class",
  1650. "format" : "guint32" },
  1651. { "name" : "Peak Throughput Class",
  1652. "format" : "guint32" },
  1653. { "name" : "Mean Throughput Class",
  1654. "format" : "guint32" } ],
  1655. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1656. { "common-ref" : "WDS Username",
  1657. "since" : "1.0",
  1658. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1659. { "common-ref" : "WDS Authentication",
  1660. "since" : "1.0",
  1661. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1662. { "name" : "IPv4 Address",
  1663. "id" : "0x1E",
  1664. "type" : "TLV",
  1665. "since" : "1.0",
  1666. "endian" : "little",
  1667. "format" : "guint32",
  1668. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1669. { "name" : "Profile ID",
  1670. "id" : "0x1F",
  1671. "type" : "TLV",
  1672. "since" : "1.0",
  1673. "format" : "sequence",
  1674. "contents" : [ { "name" : "Profile Type",
  1675. "format" : "guint8",
  1676. "public-format" : "QmiWdsProfileType" },
  1677. { "name" : "Profile Index",
  1678. "format" : "guint8" } ],
  1679. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1680. { "name" : "IPv4 Gateway Address",
  1681. "id" : "0x20",
  1682. "type" : "TLV",
  1683. "since" : "1.0",
  1684. "endian" : "little",
  1685. "format" : "guint32",
  1686. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1687. { "name" : "IPv4 Gateway Subnet Mask",
  1688. "id" : "0x21",
  1689. "type" : "TLV",
  1690. "since" : "1.0",
  1691. "endian" : "little",
  1692. "format" : "guint32",
  1693. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1694. { "name" : "PCSCF Address Using PCO",
  1695. "id" : "0x22",
  1696. "type" : "TLV",
  1697. "since" : "1.0",
  1698. "format" : "guint8",
  1699. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1700. { "name" : "PCSCF Server Address List",
  1701. "id" : "0x23",
  1702. "type" : "TLV",
  1703. "since" : "1.0",
  1704. "format" : "array",
  1705. "size-prefix-format" : "guint8",
  1706. "array-element" : { "name" : "IPv4 Address",
  1707. "endian" : "little",
  1708. "format" : "guint32" },
  1709. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1710. { "name" : "PCSCF Domain Name List",
  1711. "id" : "0x24",
  1712. "type" : "TLV",
  1713. "since" : "1.0",
  1714. "format" : "array",
  1715. "size-prefix-format" : "guint8",
  1716. "array-element" : { "name" : "FQDN",
  1717. "format" : "string",
  1718. "size-prefix-format" : "guint16" },
  1719. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1720. { "name" : "IPv6 Address",
  1721. "id" : "0x25",
  1722. "type" : "TLV",
  1723. "since" : "1.0",
  1724. "format" : "sequence",
  1725. "contents" : [ { "name" : "Address",
  1726. "format" : "array",
  1727. "fixed-size" : "8",
  1728. "array-element" : { "format": "guint16", "endian": "network" } },
  1729. { "name" : "Prefix Length",
  1730. "format" : "guint8" } ],
  1731. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1732. { "name" : "IPv6 Gateway Address",
  1733. "id" : "0x26",
  1734. "type" : "TLV",
  1735. "since" : "1.0",
  1736. "format" : "sequence",
  1737. "contents" : [ { "name" : "Address",
  1738. "format" : "array",
  1739. "fixed-size" : "8",
  1740. "array-element" : { "format": "guint16", "endian": "network" } },
  1741. { "name" : "Prefix Length",
  1742. "format" : "guint8" } ],
  1743. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1744. { "name" : "IPv6 Primary DNS Address",
  1745. "id" : "0x27",
  1746. "type" : "TLV",
  1747. "since" : "1.0",
  1748. "format" : "array",
  1749. "fixed-size" : "8",
  1750. "array-element" : { "format": "guint16", "endian": "network" },
  1751. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1752. { "name" : "IPv6 Secondary DNS Address",
  1753. "id" : "0x28",
  1754. "type" : "TLV",
  1755. "since" : "1.0",
  1756. "format" : "array",
  1757. "fixed-size" : "8",
  1758. "array-element" : { "format": "guint16", "endian": "network" },
  1759. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1760. { "name" : "MTU",
  1761. "id" : "0x29",
  1762. "type" : "TLV",
  1763. "since" : "1.0",
  1764. "format" : "guint32",
  1765. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1766. { "name" : "Domain Name List",
  1767. "id" : "0x2A",
  1768. "type" : "TLV",
  1769. "since" : "1.0",
  1770. "format" : "array",
  1771. "size-prefix-format" : "guint8",
  1772. "array-element" : { "name" : "Domain Name",
  1773. "format" : "string",
  1774. "size-prefix-format" : "guint16" },
  1775. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1776. { "name" : "IP Family",
  1777. "id" : "0x2B",
  1778. "type" : "TLV",
  1779. "since" : "1.0",
  1780. "format" : "guint8",
  1781. "public-format" : "QmiWdsIpFamily",
  1782. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1783. { "name" : "IMCN Flag",
  1784. "id" : "0x2C",
  1785. "type" : "TLV",
  1786. "since" : "1.0",
  1787. "format" : "gint8",
  1788. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1789. { "name" : "Extended Technology Preference",
  1790. "id" : "0x2D",
  1791. "type" : "TLV",
  1792. "since" : "1.0",
  1793. // Note: docs give this as gint16 with negative enum values. Instead, we use
  1794. // guint16 with equivalent positive enum values.
  1795. "format" : "guint16",
  1796. "public-format" : "QmiWdsExtendedTechnologyPreference",
  1797. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1798. { "name" : "Operator Reserved PCO",
  1799. "id" : "0x2F",
  1800. "type" : "TLV",
  1801. "since" : "1.32",
  1802. "format" : "sequence",
  1803. "contents" : [ { "name" : "MCC",
  1804. "format" : "guint16"},
  1805. { "name" : "MNC",
  1806. "format" : "guint16" },
  1807. { "name" : "MNC Includes PCS Digit",
  1808. "format" : "guint8",
  1809. "public-format" : "gboolean" },
  1810. { "name" : "App Specific Info",
  1811. "format" : "array",
  1812. "size-prefix-format" : "guint8",
  1813. "array-element" : { "format" : "guint8" } },
  1814. { "name" : "Container Id",
  1815. "format" : "guint16" } ],
  1816. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  1817. // *********************************************************************************
  1818. { "name" : "Get Dormancy Status",
  1819. "type" : "Message",
  1820. "service" : "WDS",
  1821. "id" : "0x0030",
  1822. "since" : "1.14",
  1823. "output" : [ { "common-ref" : "Operation Result" },
  1824. { "name" : "Dormancy Status",
  1825. "id" : "0x01",
  1826. "type" : "TLV",
  1827. "since" : "1.14",
  1828. "format" : "guint8",
  1829. "public-format" : "QmiWdsDormancyStatus",
  1830. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  1831. // *********************************************************************************
  1832. { "name" : "Get Autoconnect Settings",
  1833. "type" : "Message",
  1834. "service" : "WDS",
  1835. "id" : "0x0034",
  1836. "since" : "1.14",
  1837. "output" : [ { "common-ref" : "Operation Result" },
  1838. { "name" : "Status",
  1839. "id" : "0x01",
  1840. "type" : "TLV",
  1841. "since" : "1.14",
  1842. "format" : "guint8",
  1843. "public-format" : "QmiWdsAutoconnectSetting",
  1844. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1845. { "name" : "Roaming",
  1846. "id" : "0x10",
  1847. "type" : "TLV",
  1848. "since" : "1.14",
  1849. "format" : "guint8",
  1850. "public-format" : "QmiWdsAutoconnectSettingRoaming",
  1851. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  1852. // *********************************************************************************
  1853. { "name" : "Get Data Bearer Technology",
  1854. "type" : "Message",
  1855. "service" : "WDS",
  1856. "id" : "0x0037",
  1857. "since" : "1.0",
  1858. "output" : [ { "common-ref" : "Operation Result" },
  1859. { "name" : "Current",
  1860. "id" : "0x01",
  1861. "type" : "TLV",
  1862. "since" : "1.0",
  1863. "format" : "gint8",
  1864. "public-format" : "QmiWdsDataBearerTechnology",
  1865. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1866. { "name" : "Last",
  1867. "id" : "0x10",
  1868. "type" : "TLV",
  1869. "since" : "1.0",
  1870. "format" : "gint8",
  1871. "public-format" : "QmiWdsDataBearerTechnology",
  1872. "prerequisites" : [ { "field" : "Result Error Status",
  1873. "operation" : "!=",
  1874. "value" : "QMI_STATUS_SUCCESS" },
  1875. { "field" : "Result Error Code",
  1876. "operation" : "==",
  1877. "value" : "QMI_PROTOCOL_ERROR_OUT_OF_CALL" } ] } ] },
  1878. // *********************************************************************************
  1879. { "name" : "Get Current Data Bearer Technology",
  1880. "type" : "Message",
  1881. "service" : "WDS",
  1882. "id" : "0x0044",
  1883. "since" : "1.0",
  1884. "output" : [ { "common-ref" : "Operation Result" },
  1885. { "name" : "Current",
  1886. "id" : "0x01",
  1887. "type" : "TLV",
  1888. "since" : "1.0",
  1889. "format" : "sequence",
  1890. "contents" : [ { "name" : "Network Type",
  1891. "format" : "guint8",
  1892. "public-format" : "QmiWdsNetworkType" },
  1893. { "name" : "RAT Mask",
  1894. "format" : "guint32" },
  1895. { "name" : "SO Mask",
  1896. "format" : "guint32" } ],
  1897. "prerequisites": [ { "common-ref" : "Success" } ] },
  1898. { "name" : "Last",
  1899. "id" : "0x10",
  1900. "type" : "TLV",
  1901. "since" : "1.0",
  1902. "format" : "sequence",
  1903. "contents" : [ { "name" : "Network Type",
  1904. "format" : "guint8",
  1905. "public-format" : "QmiWdsNetworkType" },
  1906. { "name" : "RAT Mask",
  1907. "format" : "guint32" },
  1908. { "name" : "SO Mask",
  1909. "format" : "guint32" } ] } ] },
  1910. // *********************************************************************************
  1911. { "name" : "Get Default Profile Number",
  1912. "type" : "Message",
  1913. "service" : "WDS",
  1914. "id" : "0x0049",
  1915. "since" : "1.28",
  1916. "input" : [ { "name" : "Profile Type",
  1917. "id" : "0x01",
  1918. "mandatory" : "yes",
  1919. "type" : "TLV",
  1920. "since" : "1.28",
  1921. "format" : "sequence",
  1922. "contents" : [ { "name" : "Type",
  1923. "format" : "guint8",
  1924. "public-format" : "QmiWdsProfileType"},
  1925. { "name" : "Family",
  1926. "format" : "guint8",
  1927. "public-format" : "QmiWdsProfileFamily"}] }],
  1928. "output" : [ { "common-ref" : "Operation Result" },
  1929. { "name" : "Index",
  1930. "id" : "0x01",
  1931. "mandatory" : "yes",
  1932. "type" : "TLV",
  1933. "since" : "1.28",
  1934. "format" : "guint8",
  1935. "prerequisites" : [ { "common-ref" : "Success" } ] },
  1936. { "common-ref" : "WDS Extended Error Code",
  1937. "since" : "1.28" } ] },
  1938. // *********************************************************************************
  1939. { "name" : "Set Default Profile Number",
  1940. "type" : "Message",
  1941. "service" : "WDS",
  1942. "id" : "0x004A",
  1943. "since" : "1.28",
  1944. "input" : [ { "name" : "Profile Identifier",
  1945. "id" : "0x01",
  1946. "mandatory" : "yes",
  1947. "type" : "TLV",
  1948. "since" : "1.28",
  1949. "format" : "sequence",
  1950. "contents" : [ { "name" : "Type",
  1951. "format" : "guint8",
  1952. "public-format" : "QmiWdsProfileType"},
  1953. { "name" : "Family",
  1954. "format" : "guint8",
  1955. "public-format" : "QmiWdsProfileFamily"},
  1956. { "name" : "Index",
  1957. "format" : "guint8"}] }],
  1958. "output" : [ { "common-ref" : "Operation Result" },
  1959. { "common-ref" : "WDS Extended Error Code",
  1960. "since" : "1.28" } ] },
  1961. // *********************************************************************************
  1962. { "name" : "Set IP Family",
  1963. "type" : "Message",
  1964. "service" : "WDS",
  1965. "id" : "0x004D",
  1966. "since" : "1.0",
  1967. "input" : [ { "name" : "Preference",
  1968. "id" : "0x01",
  1969. "type" : "TLV",
  1970. "since" : "1.0",
  1971. "format" : "guint8",
  1972. "public-format" : "QmiWdsIpFamily" } ],
  1973. "output" : [ { "common-ref" : "Operation Result" } ] },
  1974. // *********************************************************************************
  1975. { "name" : "Set Autoconnect Settings",
  1976. "type" : "Message",
  1977. "service" : "WDS",
  1978. "id" : "0x0051",
  1979. "since" : "1.14",
  1980. "input" : [ { "name" : "Status",
  1981. "id" : "0x01",
  1982. "type" : "TLV",
  1983. "since" : "1.14",
  1984. "format" : "guint8",
  1985. "public-format" : "QmiWdsAutoconnectSetting" },
  1986. { "name" : "Roaming",
  1987. "id" : "0x10",
  1988. "type" : "TLV",
  1989. "since" : "1.14",
  1990. "format" : "guint8",
  1991. "public-format" : "QmiWdsAutoconnectSettingRoaming" } ],
  1992. "output" : [ { "common-ref" : "Operation Result" } ] },
  1993. // *********************************************************************************
  1994. { "name" : "Get PDN Throttle Info",
  1995. "type" : "Message",
  1996. "service" : "WDS",
  1997. "id" : "0x006C",
  1998. "since" : "1.14",
  1999. "input" : [ { "name" : "Network Type",
  2000. "id" : "0x01",
  2001. "type" : "TLV",
  2002. "since" : "1.14",
  2003. "format" : "guint8",
  2004. "public-format" : "QmiWdsDataSystemNetworkType" } ],
  2005. "output" : [ { "common-ref" : "Operation Result" },
  2006. { "name" : "Info",
  2007. "id" : "0x10",
  2008. "type" : "TLV",
  2009. "since" : "1.14",
  2010. "format" : "array",
  2011. "size-prefix-format" : "guint8",
  2012. "array-element" : { "name" : "Element",
  2013. "format" : "struct",
  2014. "contents" : [ { "name" : "IPv4 Throttled",
  2015. "format" : "gint8",
  2016. "public-format" : "gboolean" },
  2017. { "name" : "IPv6 Throttled",
  2018. "format" : "gint8",
  2019. "public-format" : "gboolean" },
  2020. { "name" : "IPv4 Throttle Time Left MS",
  2021. "format" : "guint32" },
  2022. { "name" : "IPv6 Throttle Time Left MS",
  2023. "format" : "guint32" },
  2024. { "name" : "APN",
  2025. "format" : "string" } ] },
  2026. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  2027. // *********************************************************************************
  2028. { "name" : "Get LTE Attach Parameters",
  2029. "type" : "Message",
  2030. "service" : "WDS",
  2031. "id" : "0x0085",
  2032. "since" : "1.28",
  2033. "output" : [ { "common-ref" : "Operation Result" },
  2034. { "name" : "APN",
  2035. "id" : "0x10",
  2036. "type" : "TLV",
  2037. "since" : "1.28",
  2038. "format" : "string",
  2039. "prerequisites" : [ { "common-ref" : "Success" } ] },
  2040. { "name" : "IP Support Type",
  2041. "id" : "0x11",
  2042. "type" : "TLV",
  2043. "since" : "1.28",
  2044. "format" : "guint8",
  2045. "public-format" : "QmiWdsIpSupportType",
  2046. "prerequisites" : [ { "common-ref" : "Success" } ] },
  2047. { "name" : "OTA Attach Performed",
  2048. "id" : "0x12",
  2049. "type" : "TLV",
  2050. "since" : "1.28",
  2051. "format" : "guint8",
  2052. "public-format" : "gboolean",
  2053. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  2054. // *********************************************************************************
  2055. { "name" : "Bind Data Port",
  2056. "type" : "Message",
  2057. "service" : "WDS",
  2058. "id" : "0x0089",
  2059. "since" : "1.28",
  2060. "input" : [ { "name" : "Data Port",
  2061. "id" : "0x01",
  2062. "type" : "TLV",
  2063. "since" : "1.28",
  2064. "format" : "guint16",
  2065. "public-format" : "QmiSioPort" } ],
  2066. "output" : [ { "common-ref" : "Operation Result" } ] },
  2067. // *********************************************************************************
  2068. { "name" : "Extended Ip Config",
  2069. "type" : "Indication",
  2070. "service" : "WDS",
  2071. "id" : "0x008C",
  2072. "since" : "1.32",
  2073. "output" : [ { "name" : "Changed IP Configuration",
  2074. "id" : "0x10",
  2075. "type" : "TLV",
  2076. "since" : "1.32",
  2077. "format" : "guint32",
  2078. "public-format" : "QmiWdsRequestedSettings" } ] },
  2079. // *********************************************************************************
  2080. { "name" : "Get Max LTE Attach PDN Number",
  2081. "type" : "Message",
  2082. "service" : "WDS",
  2083. "id" : "0x0092",
  2084. "since" : "1.28",
  2085. "output" : [ { "common-ref" : "Operation Result" },
  2086. { "name" : "Info",
  2087. "id" : "0x10",
  2088. "type" : "TLV",
  2089. "since" : "1.28",
  2090. "format" : "guint8",
  2091. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  2092. // *********************************************************************************
  2093. { "name" : "Set LTE Attach PDN List",
  2094. "type" : "Message",
  2095. "service" : "WDS",
  2096. "id" : "0x0093",
  2097. "since" : "1.28",
  2098. "input" : [ { "name" : "List",
  2099. "id" : "0x01",
  2100. "type" : "TLV",
  2101. "since" : "1.28",
  2102. "format" : "array",
  2103. "size-prefix-format" : "guint8",
  2104. "array-element" : { "name" : "PDN Profile ID",
  2105. "format" : "guint16" }},
  2106. { "name" : "Action",
  2107. "id" : "0x10",
  2108. "type" : "TLV",
  2109. "since" : "1.28",
  2110. "format" : "guint32",
  2111. "public-format" : "QmiWdsAttachPdnListAction"}
  2112. ],
  2113. "output" : [ { "common-ref" : "Operation Result" } ] },
  2114. { "name" : "Set LTE Attach PDN List",
  2115. "type" : "Indication",
  2116. "service" : "WDS",
  2117. "id" : "0x0093",
  2118. "since" : "1.28",
  2119. "output" : [ { "name" : "Action Result",
  2120. "id" : "0x01",
  2121. "type" : "TLV",
  2122. "since" : "1.28",
  2123. "format" : "guint8",
  2124. "public-format" : "gboolean" } ] },
  2125. // *********************************************************************************
  2126. { "name" : "Get LTE Attach PDN List",
  2127. "type" : "Message",
  2128. "service" : "WDS",
  2129. "id" : "0x0094",
  2130. "since" : "1.28",
  2131. "output" : [ { "common-ref" : "Operation Result" },
  2132. { "name" : "Current List",
  2133. "id" : "0x10",
  2134. "type" : "TLV",
  2135. "since" : "1.28",
  2136. "format" : "array",
  2137. "size-prefix-format" : "guint8",
  2138. "array-element" : { "name" : "PDN Profile ID",
  2139. "format" : "guint16" },
  2140. "prerequisites" : [ { "common-ref" : "Success" } ] },
  2141. { "name" : "Pending List",
  2142. "id" : "0x11",
  2143. "type" : "TLV",
  2144. "since" : "1.28",
  2145. "format" : "array",
  2146. "size-prefix-format" : "guint8",
  2147. "array-element" : { "name" : "PDN Profile ID",
  2148. "format" : "guint16" },
  2149. "prerequisites" : [ { "common-ref" : "Success" } ] } ] },
  2150. // *********************************************************************************
  2151. { "name" : "Bind Mux Data Port",
  2152. "type" : "Message",
  2153. "service" : "WDS",
  2154. "id" : "0x00A2",
  2155. "since" : "1.18",
  2156. "input" : [ { "name" : "Endpoint Info",
  2157. "id" : "0x10",
  2158. "type" : "TLV",
  2159. "since" : "1.18",
  2160. "format" : "sequence",
  2161. "contents" : [ { "name" : "Endpoint Type",
  2162. "format" : "guint32",
  2163. "public-format" : "QmiDataEndpointType"},
  2164. { "name" : "Interface Number",
  2165. "format" : "guint32" }]},
  2166. { "name" : "Mux ID",
  2167. "id" : "0x11",
  2168. "type" : "TLV",
  2169. "since" : "1.18",
  2170. "format" : "guint8"},
  2171. { "name" : "Client Type",
  2172. "id" : "0x13",
  2173. "type" : "TLV",
  2174. "since" : "1.18",
  2175. "format" : "guint32",
  2176. "public-format" : "QmiWdsClientType"}
  2177. ],
  2178. "output" : [ { "common-ref" : "Operation Result" } ] },
  2179. // *********************************************************************************
  2180. { "name" : "Configure Profile Event List",
  2181. "type" : "Message",
  2182. "service" : "WDS",
  2183. "id" : "0x00A7",
  2184. "since" : "1.34",
  2185. "input" : [ { "name" : "Register",
  2186. "id" : "0x10",
  2187. "type" : "TLV",
  2188. "since" : "1.34",
  2189. "format" : "array",
  2190. "size-prefix-format" : "guint8",
  2191. "array-element" : { "name" : "Element",
  2192. "format" : "struct",
  2193. "contents" : [ { "name" : "Profile Type",
  2194. "format" : "guint8",
  2195. "public-format" : "QmiWdsProfileType" },
  2196. { "name" : "Profile Index",
  2197. "format" : "guint8" } ] } } ],
  2198. "output" : [ { "common-ref" : "Operation Result" } ] },
  2199. // *********************************************************************************
  2200. { "name" : "Profile Changed",
  2201. "type" : "Indication",
  2202. "service" : "WDS",
  2203. "id" : "0x00A8",
  2204. "since" : "1.34",
  2205. "output" : [ { "name" : "Profile Event",
  2206. "id" : "0x10",
  2207. "type" : "TLV",
  2208. "since" : "1.34",
  2209. "format" : "sequence",
  2210. "contents" : [ { "name" : "Profile Type",
  2211. "format" : "guint8",
  2212. "public-format" : "QmiWdsProfileType" },
  2213. { "name" : "Profile Index",
  2214. "format" : "guint8" },
  2215. { "name" : "Change Event",
  2216. "format" : "guint8",
  2217. "public-format" : "QmiWdsProfileChangeEvent" } ] } ] },
  2218. // *********************************************************************************
  2219. { "name" : "Swi Create Profile Indexed",
  2220. "type" : "Message",
  2221. "service" : "WDS",
  2222. "id" : "0x5558",
  2223. "since" : "1.22",
  2224. "input" : [ { "common-ref" : "WDS Profile Identifier",
  2225. "since" : "1.22" } ,
  2226. { "common-ref" : "WDS Profile Name",
  2227. "since" : "1.22" },
  2228. { "common-ref" : "WDS PDP Type",
  2229. "since" : "1.22" },
  2230. { "common-ref" : "WDS APN Name",
  2231. "since" : "1.22" },
  2232. { "common-ref" : "WDS Primary IPv4 DNS Address",
  2233. "since" : "1.22" },
  2234. { "common-ref" : "WDS Secondary IPv4 DNS Address",
  2235. "since" : "1.22" },
  2236. { "common-ref" : "WDS Username",
  2237. "since" : "1.22" },
  2238. { "common-ref" : "WDS Password",
  2239. "since" : "1.22" },
  2240. { "common-ref" : "WDS Authentication",
  2241. "since" : "1.22" },
  2242. { "common-ref" : "WDS IPv4 Address Preference",
  2243. "since" : "1.22" },
  2244. { "common-ref" : "WDS PDP Context Number",
  2245. "since" : "1.22" },
  2246. { "common-ref" : "WDS APN Disabled Flag",
  2247. "since" : "1.22" },
  2248. { "common-ref" : "WDS Roaming Disallowed Flag",
  2249. "since" : "1.22" } ],
  2250. "output" : [ { "common-ref" : "Operation Result" },
  2251. { "common-ref" : "WDS Profile Identifier",
  2252. "since" : "1.22",
  2253. "prerequisites" : [ { "common-ref" : "Success" } ] } ] }
  2254. ]