LuCI.Network.WifiDevice.html 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Class: WifiDevice</title>
  6. <script src="scripts/prettify/prettify.js"></script>
  7. <script src="scripts/prettify/lang-css.js"></script>
  8. <script src="scripts/jquery.min.js"></script>
  9. <!--[if lt IE 9]>
  10. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  11. <![endif]-->
  12. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  13. <link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
  14. <link type="text/css" rel="stylesheet" href="styles/jaguar.css">
  15. <script>
  16. var config = {"monospaceLinks":true,"cleverLinks":true,"default":{"outputSourceFiles":true}};
  17. </script>
  18. </head>
  19. <body>
  20. <div id="wrap" class="clearfix">
  21. <div class="navigation">
  22. <h3 class="applicationName"><a href="index.html"></a></h3>
  23. <div class="search">
  24. <input id="search" type="text" class="form-control input-sm" placeholder="Search Documentations">
  25. </div>
  26. <ul class="list">
  27. <li class="item" data-name="LuCI">
  28. <span class="title">
  29. <a href="LuCI.html">LuCI</a>
  30. </span>
  31. <ul class="members itemMembers">
  32. <span class="subtitle">Members</span>
  33. <li data-name="LuCI#env"><a href="LuCI.html#env">env</a></li>
  34. </ul>
  35. <ul class="typedefs itemMembers">
  36. <span class="subtitle">Typedefs</span>
  37. <li data-name="LuCI.requestCallbackFn"><a href="LuCI.html#.requestCallbackFn">requestCallbackFn</a></li>
  38. </ul>
  39. <ul class="typedefs itemMembers">
  40. </ul>
  41. <ul class="methods itemMembers">
  42. <span class="subtitle">Methods</span>
  43. <li data-name="LuCI#bind"><a href="LuCI.html#bind">bind</a></li>
  44. <li data-name="LuCI#error"><a href="LuCI.html#error">error</a></li>
  45. <li data-name="LuCI#get"><a href="LuCI.html#get">get</a></li>
  46. <li data-name="LuCI#halt"><a href="LuCI.html#halt">halt</a></li>
  47. <li data-name="LuCI#hasSystemFeature"><a href="LuCI.html#hasSystemFeature">hasSystemFeature</a></li>
  48. <li data-name="LuCI#isObject"><a href="LuCI.html#isObject">isObject</a></li>
  49. <li data-name="LuCI#location"><a href="LuCI.html#location">location</a></li>
  50. <li data-name="LuCI#path"><a href="LuCI.html#path">path</a></li>
  51. <li data-name="LuCI#poll"><a href="LuCI.html#poll">poll</a></li>
  52. <li data-name="LuCI#post"><a href="LuCI.html#post">post</a></li>
  53. <li data-name="LuCI#raise"><a href="LuCI.html#raise">raise</a></li>
  54. <li data-name="LuCI#require"><a href="LuCI.html#require">require</a></li>
  55. <li data-name="LuCI#resolveDefault"><a href="LuCI.html#resolveDefault">resolveDefault</a></li>
  56. <li data-name="LuCI#resource"><a href="LuCI.html#resource">resource</a></li>
  57. <li data-name="LuCI#run"><a href="LuCI.html#run">run</a></li>
  58. <li data-name="LuCI#sortedKeys"><a href="LuCI.html#sortedKeys">sortedKeys</a></li>
  59. <li data-name="LuCI#stop"><a href="LuCI.html#stop">stop</a></li>
  60. <li data-name="LuCI#toArray"><a href="LuCI.html#toArray">toArray</a></li>
  61. <li data-name="LuCI#url"><a href="LuCI.html#url">url</a></li>
  62. </ul>
  63. <ul class="events itemMembers">
  64. </ul>
  65. </li>
  66. <li class="item" data-name="LuCI.Class">
  67. <span class="title">
  68. <a href="LuCI.Class.html">LuCI.Class</a>
  69. </span>
  70. <ul class="members itemMembers">
  71. </ul>
  72. <ul class="typedefs itemMembers">
  73. </ul>
  74. <ul class="typedefs itemMembers">
  75. </ul>
  76. <ul class="methods itemMembers">
  77. <span class="subtitle">Methods</span>
  78. <li data-name="LuCI.Class.extend"><a href="LuCI.Class.html#.extend">extend</a></li>
  79. <li data-name="LuCI.Class.instantiate"><a href="LuCI.Class.html#.instantiate">instantiate</a></li>
  80. <li data-name="LuCI.Class.isSubclass"><a href="LuCI.Class.html#.isSubclass">isSubclass</a></li>
  81. <li data-name="LuCI.Class.singleton"><a href="LuCI.Class.html#.singleton">singleton</a></li>
  82. <li data-name="LuCI.Class#super"><a href="LuCI.Class.html#super">super</a></li>
  83. <li data-name="LuCI.Class#varargs"><a href="LuCI.Class.html#varargs">varargs</a></li>
  84. </ul>
  85. <ul class="events itemMembers">
  86. </ul>
  87. </li>
  88. <li class="item" data-name="LuCI.dom">
  89. <span class="title">
  90. <a href="LuCI.dom.html">LuCI.dom</a>
  91. </span>
  92. <ul class="members itemMembers">
  93. </ul>
  94. <ul class="typedefs itemMembers">
  95. <span class="subtitle">Typedefs</span>
  96. <li data-name="LuCI.dom~ignoreCallbackFn"><a href="LuCI.dom.html#~ignoreCallbackFn">ignoreCallbackFn</a></li>
  97. </ul>
  98. <ul class="typedefs itemMembers">
  99. </ul>
  100. <ul class="methods itemMembers">
  101. <span class="subtitle">Methods</span>
  102. <li data-name="LuCI.dom#append"><a href="LuCI.dom.html#append">append</a></li>
  103. <li data-name="LuCI.dom#attr"><a href="LuCI.dom.html#attr">attr</a></li>
  104. <li data-name="LuCI.dom#bindClassInstance"><a href="LuCI.dom.html#bindClassInstance">bindClassInstance</a></li>
  105. <li data-name="LuCI.dom#callClassMethod"><a href="LuCI.dom.html#callClassMethod">callClassMethod</a></li>
  106. <li data-name="LuCI.dom#content"><a href="LuCI.dom.html#content">content</a></li>
  107. <li data-name="LuCI.dom#create"><a href="LuCI.dom.html#create">create</a></li>
  108. <li data-name="LuCI.dom#data"><a href="LuCI.dom.html#data">data</a></li>
  109. <li data-name="LuCI.dom#elem"><a href="LuCI.dom.html#elem">elem</a></li>
  110. <li data-name="LuCI.dom#findClassInstance"><a href="LuCI.dom.html#findClassInstance">findClassInstance</a></li>
  111. <li data-name="LuCI.dom#isEmpty"><a href="LuCI.dom.html#isEmpty">isEmpty</a></li>
  112. <li data-name="LuCI.dom#matches"><a href="LuCI.dom.html#matches">matches</a></li>
  113. <li data-name="LuCI.dom#parent"><a href="LuCI.dom.html#parent">parent</a></li>
  114. <li data-name="LuCI.dom#parse"><a href="LuCI.dom.html#parse">parse</a></li>
  115. </ul>
  116. <ul class="events itemMembers">
  117. </ul>
  118. </li>
  119. <li class="item" data-name="LuCI.fs">
  120. <span class="title">
  121. <a href="LuCI.fs.html">LuCI.fs</a>
  122. </span>
  123. <ul class="members itemMembers">
  124. </ul>
  125. <ul class="typedefs itemMembers">
  126. <span class="subtitle">Typedefs</span>
  127. <li data-name="LuCI.fs.FileExecResult"><a href="LuCI.fs.html#.FileExecResult">FileExecResult</a></li>
  128. <li data-name="LuCI.fs.FileStatEntry"><a href="LuCI.fs.html#.FileStatEntry">FileStatEntry</a></li>
  129. </ul>
  130. <ul class="typedefs itemMembers">
  131. </ul>
  132. <ul class="methods itemMembers">
  133. <span class="subtitle">Methods</span>
  134. <li data-name="LuCI.fs#exec"><a href="LuCI.fs.html#exec">exec</a></li>
  135. <li data-name="LuCI.fs#lines"><a href="LuCI.fs.html#lines">lines</a></li>
  136. <li data-name="LuCI.fs#list"><a href="LuCI.fs.html#list">list</a></li>
  137. <li data-name="LuCI.fs#read"><a href="LuCI.fs.html#read">read</a></li>
  138. <li data-name="LuCI.fs#remove"><a href="LuCI.fs.html#remove">remove</a></li>
  139. <li data-name="LuCI.fs#stat"><a href="LuCI.fs.html#stat">stat</a></li>
  140. <li data-name="LuCI.fs#trimmed"><a href="LuCI.fs.html#trimmed">trimmed</a></li>
  141. <li data-name="LuCI.fs#write"><a href="LuCI.fs.html#write">write</a></li>
  142. </ul>
  143. <ul class="events itemMembers">
  144. </ul>
  145. </li>
  146. <li class="item" data-name="LuCI.Headers">
  147. <span class="title">
  148. <a href="LuCI.Headers.html">LuCI.Headers</a>
  149. </span>
  150. <ul class="members itemMembers">
  151. </ul>
  152. <ul class="typedefs itemMembers">
  153. </ul>
  154. <ul class="typedefs itemMembers">
  155. </ul>
  156. <ul class="methods itemMembers">
  157. <span class="subtitle">Methods</span>
  158. <li data-name="LuCI.Headers#get"><a href="LuCI.Headers.html#get">get</a></li>
  159. <li data-name="LuCI.Headers#has"><a href="LuCI.Headers.html#has">has</a></li>
  160. </ul>
  161. <ul class="events itemMembers">
  162. </ul>
  163. </li>
  164. <li class="item" data-name="LuCI.Network">
  165. <span class="title">
  166. <a href="LuCI.Network.html">LuCI.Network</a>
  167. </span>
  168. <ul class="members itemMembers">
  169. </ul>
  170. <ul class="typedefs itemMembers">
  171. <span class="subtitle">Typedefs</span>
  172. <li data-name="LuCI.Network.SwitchTopology"><a href="LuCI.Network.html#.SwitchTopology">SwitchTopology</a></li>
  173. <li data-name="LuCI.Network.WifiEncryption"><a href="LuCI.Network.html#.WifiEncryption">WifiEncryption</a></li>
  174. <li data-name="LuCI.Network.WifiPeerEntry"><a href="LuCI.Network.html#.WifiPeerEntry">WifiPeerEntry</a></li>
  175. <li data-name="LuCI.Network.WifiRateEntry"><a href="LuCI.Network.html#.WifiRateEntry">WifiRateEntry</a></li>
  176. <li data-name="LuCI.Network.WifiScanResult"><a href="LuCI.Network.html#.WifiScanResult">WifiScanResult</a></li>
  177. </ul>
  178. <ul class="typedefs itemMembers">
  179. </ul>
  180. <ul class="methods itemMembers">
  181. <span class="subtitle">Methods</span>
  182. <li data-name="LuCI.Network#addNetwork"><a href="LuCI.Network.html#addNetwork">addNetwork</a></li>
  183. <li data-name="LuCI.Network#addWifiNetwork"><a href="LuCI.Network.html#addWifiNetwork">addWifiNetwork</a></li>
  184. <li data-name="LuCI.Network#deleteNetwork"><a href="LuCI.Network.html#deleteNetwork">deleteNetwork</a></li>
  185. <li data-name="LuCI.Network#deleteWifiNetwork"><a href="LuCI.Network.html#deleteWifiNetwork">deleteWifiNetwork</a></li>
  186. <li data-name="LuCI.Network#flushCache"><a href="LuCI.Network.html#flushCache">flushCache</a></li>
  187. <li data-name="LuCI.Network#formatWifiEncryption"><a href="LuCI.Network.html#formatWifiEncryption">formatWifiEncryption</a></li>
  188. <li data-name="LuCI.Network#getDevice"><a href="LuCI.Network.html#getDevice">getDevice</a></li>
  189. <li data-name="LuCI.Network#getDevices"><a href="LuCI.Network.html#getDevices">getDevices</a></li>
  190. <li data-name="LuCI.Network#getDSLModemType"><a href="LuCI.Network.html#getDSLModemType">getDSLModemType</a></li>
  191. <li data-name="LuCI.Network#getHostHints"><a href="LuCI.Network.html#getHostHints">getHostHints</a></li>
  192. <li data-name="LuCI.Network#getIfnameOf"><a href="LuCI.Network.html#getIfnameOf">getIfnameOf</a></li>
  193. <li data-name="LuCI.Network#getNetwork"><a href="LuCI.Network.html#getNetwork">getNetwork</a></li>
  194. <li data-name="LuCI.Network#getNetworks"><a href="LuCI.Network.html#getNetworks">getNetworks</a></li>
  195. <li data-name="LuCI.Network#getProtocol"><a href="LuCI.Network.html#getProtocol">getProtocol</a></li>
  196. <li data-name="LuCI.Network#getProtocols"><a href="LuCI.Network.html#getProtocols">getProtocols</a></li>
  197. <li data-name="LuCI.Network#getSwitchTopologies"><a href="LuCI.Network.html#getSwitchTopologies">getSwitchTopologies</a></li>
  198. <li data-name="LuCI.Network#getWAN6Networks"><a href="LuCI.Network.html#getWAN6Networks">getWAN6Networks</a></li>
  199. <li data-name="LuCI.Network#getWANNetworks"><a href="LuCI.Network.html#getWANNetworks">getWANNetworks</a></li>
  200. <li data-name="LuCI.Network#getWifiDevice"><a href="LuCI.Network.html#getWifiDevice">getWifiDevice</a></li>
  201. <li data-name="LuCI.Network#getWifiDevices"><a href="LuCI.Network.html#getWifiDevices">getWifiDevices</a></li>
  202. <li data-name="LuCI.Network#getWifiNetwork"><a href="LuCI.Network.html#getWifiNetwork">getWifiNetwork</a></li>
  203. <li data-name="LuCI.Network#getWifiNetworks"><a href="LuCI.Network.html#getWifiNetworks">getWifiNetworks</a></li>
  204. <li data-name="LuCI.Network#isIgnoredDevice"><a href="LuCI.Network.html#isIgnoredDevice">isIgnoredDevice</a></li>
  205. <li data-name="LuCI.Network#maskToPrefix"><a href="LuCI.Network.html#maskToPrefix">maskToPrefix</a></li>
  206. <li data-name="LuCI.Network#prefixToMask"><a href="LuCI.Network.html#prefixToMask">prefixToMask</a></li>
  207. <li data-name="LuCI.Network#registerErrorCode"><a href="LuCI.Network.html#registerErrorCode">registerErrorCode</a></li>
  208. <li data-name="LuCI.Network#registerPatternVirtual"><a href="LuCI.Network.html#registerPatternVirtual">registerPatternVirtual</a></li>
  209. <li data-name="LuCI.Network#registerProtocol"><a href="LuCI.Network.html#registerProtocol">registerProtocol</a></li>
  210. <li data-name="LuCI.Network#renameNetwork"><a href="LuCI.Network.html#renameNetwork">renameNetwork</a></li>
  211. </ul>
  212. <ul class="events itemMembers">
  213. </ul>
  214. </li>
  215. <li class="item" data-name="LuCI.Network.Device">
  216. <span class="title">
  217. <a href="LuCI.Network.Device.html">LuCI.Network.Device</a>
  218. </span>
  219. <ul class="members itemMembers">
  220. </ul>
  221. <ul class="typedefs itemMembers">
  222. </ul>
  223. <ul class="typedefs itemMembers">
  224. </ul>
  225. <ul class="methods itemMembers">
  226. <span class="subtitle">Methods</span>
  227. <li data-name="LuCI.Network.Device#getBridgeID"><a href="LuCI.Network.Device.html#getBridgeID">getBridgeID</a></li>
  228. <li data-name="LuCI.Network.Device#getBridgeSTP"><a href="LuCI.Network.Device.html#getBridgeSTP">getBridgeSTP</a></li>
  229. <li data-name="LuCI.Network.Device#getI18n"><a href="LuCI.Network.Device.html#getI18n">getI18n</a></li>
  230. <li data-name="LuCI.Network.Device#getIP6Addrs"><a href="LuCI.Network.Device.html#getIP6Addrs">getIP6Addrs</a></li>
  231. <li data-name="LuCI.Network.Device#getIPAddrs"><a href="LuCI.Network.Device.html#getIPAddrs">getIPAddrs</a></li>
  232. <li data-name="LuCI.Network.Device#getMAC"><a href="LuCI.Network.Device.html#getMAC">getMAC</a></li>
  233. <li data-name="LuCI.Network.Device#getMTU"><a href="LuCI.Network.Device.html#getMTU">getMTU</a></li>
  234. <li data-name="LuCI.Network.Device#getName"><a href="LuCI.Network.Device.html#getName">getName</a></li>
  235. <li data-name="LuCI.Network.Device#getNetwork"><a href="LuCI.Network.Device.html#getNetwork">getNetwork</a></li>
  236. <li data-name="LuCI.Network.Device#getNetworks"><a href="LuCI.Network.Device.html#getNetworks">getNetworks</a></li>
  237. <li data-name="LuCI.Network.Device#getPorts"><a href="LuCI.Network.Device.html#getPorts">getPorts</a></li>
  238. <li data-name="LuCI.Network.Device#getRXBytes"><a href="LuCI.Network.Device.html#getRXBytes">getRXBytes</a></li>
  239. <li data-name="LuCI.Network.Device#getRXPackets"><a href="LuCI.Network.Device.html#getRXPackets">getRXPackets</a></li>
  240. <li data-name="LuCI.Network.Device#getShortName"><a href="LuCI.Network.Device.html#getShortName">getShortName</a></li>
  241. <li data-name="LuCI.Network.Device#getTXBytes"><a href="LuCI.Network.Device.html#getTXBytes">getTXBytes</a></li>
  242. <li data-name="LuCI.Network.Device#getTXPackets"><a href="LuCI.Network.Device.html#getTXPackets">getTXPackets</a></li>
  243. <li data-name="LuCI.Network.Device#getType"><a href="LuCI.Network.Device.html#getType">getType</a></li>
  244. <li data-name="LuCI.Network.Device#getTypeI18n"><a href="LuCI.Network.Device.html#getTypeI18n">getTypeI18n</a></li>
  245. <li data-name="LuCI.Network.Device#getWifiNetwork"><a href="LuCI.Network.Device.html#getWifiNetwork">getWifiNetwork</a></li>
  246. <li data-name="LuCI.Network.Device#isBridge"><a href="LuCI.Network.Device.html#isBridge">isBridge</a></li>
  247. <li data-name="LuCI.Network.Device#isBridgePort"><a href="LuCI.Network.Device.html#isBridgePort">isBridgePort</a></li>
  248. <li data-name="LuCI.Network.Device#isUp"><a href="LuCI.Network.Device.html#isUp">isUp</a></li>
  249. </ul>
  250. <ul class="events itemMembers">
  251. </ul>
  252. </li>
  253. <li class="item" data-name="LuCI.Network.Hosts">
  254. <span class="title">
  255. <a href="LuCI.Network.Hosts.html">LuCI.Network.Hosts</a>
  256. </span>
  257. <ul class="members itemMembers">
  258. </ul>
  259. <ul class="typedefs itemMembers">
  260. </ul>
  261. <ul class="typedefs itemMembers">
  262. </ul>
  263. <ul class="methods itemMembers">
  264. <span class="subtitle">Methods</span>
  265. <li data-name="LuCI.Network.Hosts#getHostnameByIP6Addr"><a href="LuCI.Network.Hosts.html#getHostnameByIP6Addr">getHostnameByIP6Addr</a></li>
  266. <li data-name="LuCI.Network.Hosts#getHostnameByIPAddr"><a href="LuCI.Network.Hosts.html#getHostnameByIPAddr">getHostnameByIPAddr</a></li>
  267. <li data-name="LuCI.Network.Hosts#getHostnameByMACAddr"><a href="LuCI.Network.Hosts.html#getHostnameByMACAddr">getHostnameByMACAddr</a></li>
  268. <li data-name="LuCI.Network.Hosts#getIP6AddrByMACAddr"><a href="LuCI.Network.Hosts.html#getIP6AddrByMACAddr">getIP6AddrByMACAddr</a></li>
  269. <li data-name="LuCI.Network.Hosts#getIPAddrByMACAddr"><a href="LuCI.Network.Hosts.html#getIPAddrByMACAddr">getIPAddrByMACAddr</a></li>
  270. <li data-name="LuCI.Network.Hosts#getMACAddrByIP6Addr"><a href="LuCI.Network.Hosts.html#getMACAddrByIP6Addr">getMACAddrByIP6Addr</a></li>
  271. <li data-name="LuCI.Network.Hosts#getMACAddrByIPAddr"><a href="LuCI.Network.Hosts.html#getMACAddrByIPAddr">getMACAddrByIPAddr</a></li>
  272. <li data-name="LuCI.Network.Hosts#getMACHints"><a href="LuCI.Network.Hosts.html#getMACHints">getMACHints</a></li>
  273. </ul>
  274. <ul class="events itemMembers">
  275. </ul>
  276. </li>
  277. <li class="item" data-name="LuCI.Network.Protocol">
  278. <span class="title">
  279. <a href="LuCI.Network.Protocol.html">LuCI.Network.Protocol</a>
  280. </span>
  281. <ul class="members itemMembers">
  282. </ul>
  283. <ul class="typedefs itemMembers">
  284. </ul>
  285. <ul class="typedefs itemMembers">
  286. </ul>
  287. <ul class="methods itemMembers">
  288. <span class="subtitle">Methods</span>
  289. <li data-name="LuCI.Network.Protocol#addDevice"><a href="LuCI.Network.Protocol.html#addDevice">addDevice</a></li>
  290. <li data-name="LuCI.Network.Protocol#containsDevice"><a href="LuCI.Network.Protocol.html#containsDevice">containsDevice</a></li>
  291. <li data-name="LuCI.Network.Protocol#deleteDevice"><a href="LuCI.Network.Protocol.html#deleteDevice">deleteDevice</a></li>
  292. <li data-name="LuCI.Network.Protocol#get"><a href="LuCI.Network.Protocol.html#get">get</a></li>
  293. <li data-name="LuCI.Network.Protocol#getDevice"><a href="LuCI.Network.Protocol.html#getDevice">getDevice</a></li>
  294. <li data-name="LuCI.Network.Protocol#getDevices"><a href="LuCI.Network.Protocol.html#getDevices">getDevices</a></li>
  295. <li data-name="LuCI.Network.Protocol#getDNS6Addrs"><a href="LuCI.Network.Protocol.html#getDNS6Addrs">getDNS6Addrs</a></li>
  296. <li data-name="LuCI.Network.Protocol#getDNSAddrs"><a href="LuCI.Network.Protocol.html#getDNSAddrs">getDNSAddrs</a></li>
  297. <li data-name="LuCI.Network.Protocol#getErrors"><a href="LuCI.Network.Protocol.html#getErrors">getErrors</a></li>
  298. <li data-name="LuCI.Network.Protocol#getExpiry"><a href="LuCI.Network.Protocol.html#getExpiry">getExpiry</a></li>
  299. <li data-name="LuCI.Network.Protocol#getGateway6Addr"><a href="LuCI.Network.Protocol.html#getGateway6Addr">getGateway6Addr</a></li>
  300. <li data-name="LuCI.Network.Protocol#getGatewayAddr"><a href="LuCI.Network.Protocol.html#getGatewayAddr">getGatewayAddr</a></li>
  301. <li data-name="LuCI.Network.Protocol#getI18n"><a href="LuCI.Network.Protocol.html#getI18n">getI18n</a></li>
  302. <li data-name="LuCI.Network.Protocol#getIfname"><a href="LuCI.Network.Protocol.html#getIfname">getIfname</a></li>
  303. <li data-name="LuCI.Network.Protocol#getIP6Addr"><a href="LuCI.Network.Protocol.html#getIP6Addr">getIP6Addr</a></li>
  304. <li data-name="LuCI.Network.Protocol#getIP6Addrs"><a href="LuCI.Network.Protocol.html#getIP6Addrs">getIP6Addrs</a></li>
  305. <li data-name="LuCI.Network.Protocol#getIP6Prefix"><a href="LuCI.Network.Protocol.html#getIP6Prefix">getIP6Prefix</a></li>
  306. <li data-name="LuCI.Network.Protocol#getIPAddr"><a href="LuCI.Network.Protocol.html#getIPAddr">getIPAddr</a></li>
  307. <li data-name="LuCI.Network.Protocol#getIPAddrs"><a href="LuCI.Network.Protocol.html#getIPAddrs">getIPAddrs</a></li>
  308. <li data-name="LuCI.Network.Protocol#getL2Device"><a href="LuCI.Network.Protocol.html#getL2Device">getL2Device</a></li>
  309. <li data-name="LuCI.Network.Protocol#getL3Device"><a href="LuCI.Network.Protocol.html#getL3Device">getL3Device</a></li>
  310. <li data-name="LuCI.Network.Protocol#getMetric"><a href="LuCI.Network.Protocol.html#getMetric">getMetric</a></li>
  311. <li data-name="LuCI.Network.Protocol#getName"><a href="LuCI.Network.Protocol.html#getName">getName</a></li>
  312. <li data-name="LuCI.Network.Protocol#getNetmask"><a href="LuCI.Network.Protocol.html#getNetmask">getNetmask</a></li>
  313. <li data-name="LuCI.Network.Protocol#getOpkgPackage"><a href="LuCI.Network.Protocol.html#getOpkgPackage">getOpkgPackage</a></li>
  314. <li data-name="LuCI.Network.Protocol#getProtocol"><a href="LuCI.Network.Protocol.html#getProtocol">getProtocol</a></li>
  315. <li data-name="LuCI.Network.Protocol#getType"><a href="LuCI.Network.Protocol.html#getType">getType</a></li>
  316. <li data-name="LuCI.Network.Protocol#getUptime"><a href="LuCI.Network.Protocol.html#getUptime">getUptime</a></li>
  317. <li data-name="LuCI.Network.Protocol#getZoneName"><a href="LuCI.Network.Protocol.html#getZoneName">getZoneName</a></li>
  318. <li data-name="LuCI.Network.Protocol#isAlias"><a href="LuCI.Network.Protocol.html#isAlias">isAlias</a></li>
  319. <li data-name="LuCI.Network.Protocol#isBridge"><a href="LuCI.Network.Protocol.html#isBridge">isBridge</a></li>
  320. <li data-name="LuCI.Network.Protocol#isDynamic"><a href="LuCI.Network.Protocol.html#isDynamic">isDynamic</a></li>
  321. <li data-name="LuCI.Network.Protocol#isEmpty"><a href="LuCI.Network.Protocol.html#isEmpty">isEmpty</a></li>
  322. <li data-name="LuCI.Network.Protocol#isFloating"><a href="LuCI.Network.Protocol.html#isFloating">isFloating</a></li>
  323. <li data-name="LuCI.Network.Protocol#isInstalled"><a href="LuCI.Network.Protocol.html#isInstalled">isInstalled</a></li>
  324. <li data-name="LuCI.Network.Protocol#isUp"><a href="LuCI.Network.Protocol.html#isUp">isUp</a></li>
  325. <li data-name="LuCI.Network.Protocol#isVirtual"><a href="LuCI.Network.Protocol.html#isVirtual">isVirtual</a></li>
  326. <li data-name="LuCI.Network.Protocol#set"><a href="LuCI.Network.Protocol.html#set">set</a></li>
  327. </ul>
  328. <ul class="events itemMembers">
  329. </ul>
  330. </li>
  331. <li class="item" data-name="LuCI.Network.WifiDevice">
  332. <span class="title">
  333. <a href="LuCI.Network.WifiDevice.html">LuCI.Network.WifiDevice</a>
  334. </span>
  335. <ul class="members itemMembers">
  336. </ul>
  337. <ul class="typedefs itemMembers">
  338. </ul>
  339. <ul class="typedefs itemMembers">
  340. </ul>
  341. <ul class="methods itemMembers">
  342. <span class="subtitle">Methods</span>
  343. <li data-name="LuCI.Network.WifiDevice#addWifiNetwork"><a href="LuCI.Network.WifiDevice.html#addWifiNetwork">addWifiNetwork</a></li>
  344. <li data-name="LuCI.Network.WifiDevice#deleteWifiNetwork"><a href="LuCI.Network.WifiDevice.html#deleteWifiNetwork">deleteWifiNetwork</a></li>
  345. <li data-name="LuCI.Network.WifiDevice#get"><a href="LuCI.Network.WifiDevice.html#get">get</a></li>
  346. <li data-name="LuCI.Network.WifiDevice#getHTModes"><a href="LuCI.Network.WifiDevice.html#getHTModes">getHTModes</a></li>
  347. <li data-name="LuCI.Network.WifiDevice#getHWModes"><a href="LuCI.Network.WifiDevice.html#getHWModes">getHWModes</a></li>
  348. <li data-name="LuCI.Network.WifiDevice#getI18n"><a href="LuCI.Network.WifiDevice.html#getI18n">getI18n</a></li>
  349. <li data-name="LuCI.Network.WifiDevice#getName"><a href="LuCI.Network.WifiDevice.html#getName">getName</a></li>
  350. <li data-name="LuCI.Network.WifiDevice#getScanList"><a href="LuCI.Network.WifiDevice.html#getScanList">getScanList</a></li>
  351. <li data-name="LuCI.Network.WifiDevice#getWifiNetwork"><a href="LuCI.Network.WifiDevice.html#getWifiNetwork">getWifiNetwork</a></li>
  352. <li data-name="LuCI.Network.WifiDevice#getWifiNetworks"><a href="LuCI.Network.WifiDevice.html#getWifiNetworks">getWifiNetworks</a></li>
  353. <li data-name="LuCI.Network.WifiDevice#isDisabled"><a href="LuCI.Network.WifiDevice.html#isDisabled">isDisabled</a></li>
  354. <li data-name="LuCI.Network.WifiDevice#isUp"><a href="LuCI.Network.WifiDevice.html#isUp">isUp</a></li>
  355. <li data-name="LuCI.Network.WifiDevice#set"><a href="LuCI.Network.WifiDevice.html#set">set</a></li>
  356. </ul>
  357. <ul class="events itemMembers">
  358. </ul>
  359. </li>
  360. <li class="item" data-name="LuCI.Network.WifiNetwork">
  361. <span class="title">
  362. <a href="LuCI.Network.WifiNetwork.html">LuCI.Network.WifiNetwork</a>
  363. </span>
  364. <ul class="members itemMembers">
  365. </ul>
  366. <ul class="typedefs itemMembers">
  367. </ul>
  368. <ul class="typedefs itemMembers">
  369. </ul>
  370. <ul class="methods itemMembers">
  371. <span class="subtitle">Methods</span>
  372. <li data-name="LuCI.Network.WifiNetwork#disconnectClient"><a href="LuCI.Network.WifiNetwork.html#disconnectClient">disconnectClient</a></li>
  373. <li data-name="LuCI.Network.WifiNetwork#get"><a href="LuCI.Network.WifiNetwork.html#get">get</a></li>
  374. <li data-name="LuCI.Network.WifiNetwork#getActiveBSSID"><a href="LuCI.Network.WifiNetwork.html#getActiveBSSID">getActiveBSSID</a></li>
  375. <li data-name="LuCI.Network.WifiNetwork#getActiveEncryption"><a href="LuCI.Network.WifiNetwork.html#getActiveEncryption">getActiveEncryption</a></li>
  376. <li data-name="LuCI.Network.WifiNetwork#getActiveMode"><a href="LuCI.Network.WifiNetwork.html#getActiveMode">getActiveMode</a></li>
  377. <li data-name="LuCI.Network.WifiNetwork#getActiveModeI18n"><a href="LuCI.Network.WifiNetwork.html#getActiveModeI18n">getActiveModeI18n</a></li>
  378. <li data-name="LuCI.Network.WifiNetwork#getActiveSSID"><a href="LuCI.Network.WifiNetwork.html#getActiveSSID">getActiveSSID</a></li>
  379. <li data-name="LuCI.Network.WifiNetwork#getAssocList"><a href="LuCI.Network.WifiNetwork.html#getAssocList">getAssocList</a></li>
  380. <li data-name="LuCI.Network.WifiNetwork#getBitRate"><a href="LuCI.Network.WifiNetwork.html#getBitRate">getBitRate</a></li>
  381. <li data-name="LuCI.Network.WifiNetwork#getBSSID"><a href="LuCI.Network.WifiNetwork.html#getBSSID">getBSSID</a></li>
  382. <li data-name="LuCI.Network.WifiNetwork#getChannel"><a href="LuCI.Network.WifiNetwork.html#getChannel">getChannel</a></li>
  383. <li data-name="LuCI.Network.WifiNetwork#getCountryCode"><a href="LuCI.Network.WifiNetwork.html#getCountryCode">getCountryCode</a></li>
  384. <li data-name="LuCI.Network.WifiNetwork#getDevice"><a href="LuCI.Network.WifiNetwork.html#getDevice">getDevice</a></li>
  385. <li data-name="LuCI.Network.WifiNetwork#getFrequency"><a href="LuCI.Network.WifiNetwork.html#getFrequency">getFrequency</a></li>
  386. <li data-name="LuCI.Network.WifiNetwork#getI18n"><a href="LuCI.Network.WifiNetwork.html#getI18n">getI18n</a></li>
  387. <li data-name="LuCI.Network.WifiNetwork#getID"><a href="LuCI.Network.WifiNetwork.html#getID">getID</a></li>
  388. <li data-name="LuCI.Network.WifiNetwork#getIfname"><a href="LuCI.Network.WifiNetwork.html#getIfname">getIfname</a></li>
  389. <li data-name="LuCI.Network.WifiNetwork#getMeshID"><a href="LuCI.Network.WifiNetwork.html#getMeshID">getMeshID</a></li>
  390. <li data-name="LuCI.Network.WifiNetwork#getMode"><a href="LuCI.Network.WifiNetwork.html#getMode">getMode</a></li>
  391. <li data-name="LuCI.Network.WifiNetwork#getName"><a href="LuCI.Network.WifiNetwork.html#getName">getName</a></li>
  392. <li data-name="LuCI.Network.WifiNetwork#getNetwork"><a href="LuCI.Network.WifiNetwork.html#getNetwork">getNetwork</a></li>
  393. <li data-name="LuCI.Network.WifiNetwork#getNetworkNames"><a href="LuCI.Network.WifiNetwork.html#getNetworkNames">getNetworkNames</a></li>
  394. <li data-name="LuCI.Network.WifiNetwork#getNetworks"><a href="LuCI.Network.WifiNetwork.html#getNetworks">getNetworks</a></li>
  395. <li data-name="LuCI.Network.WifiNetwork#getNoise"><a href="LuCI.Network.WifiNetwork.html#getNoise">getNoise</a></li>
  396. <li data-name="LuCI.Network.WifiNetwork#getShortName"><a href="LuCI.Network.WifiNetwork.html#getShortName">getShortName</a></li>
  397. <li data-name="LuCI.Network.WifiNetwork#getSignal"><a href="LuCI.Network.WifiNetwork.html#getSignal">getSignal</a></li>
  398. <li data-name="LuCI.Network.WifiNetwork#getSignalLevel"><a href="LuCI.Network.WifiNetwork.html#getSignalLevel">getSignalLevel</a></li>
  399. <li data-name="LuCI.Network.WifiNetwork#getSignalPercent"><a href="LuCI.Network.WifiNetwork.html#getSignalPercent">getSignalPercent</a></li>
  400. <li data-name="LuCI.Network.WifiNetwork#getSSID"><a href="LuCI.Network.WifiNetwork.html#getSSID">getSSID</a></li>
  401. <li data-name="LuCI.Network.WifiNetwork#getTXPower"><a href="LuCI.Network.WifiNetwork.html#getTXPower">getTXPower</a></li>
  402. <li data-name="LuCI.Network.WifiNetwork#getTXPowerOffset"><a href="LuCI.Network.WifiNetwork.html#getTXPowerOffset">getTXPowerOffset</a></li>
  403. <li data-name="LuCI.Network.WifiNetwork#getWifiDevice"><a href="LuCI.Network.WifiNetwork.html#getWifiDevice">getWifiDevice</a></li>
  404. <li data-name="LuCI.Network.WifiNetwork#getWifiDeviceName"><a href="LuCI.Network.WifiNetwork.html#getWifiDeviceName">getWifiDeviceName</a></li>
  405. <li data-name="LuCI.Network.WifiNetwork#isClientDisconnectSupported"><a href="LuCI.Network.WifiNetwork.html#isClientDisconnectSupported">isClientDisconnectSupported</a></li>
  406. <li data-name="LuCI.Network.WifiNetwork#isDisabled"><a href="LuCI.Network.WifiNetwork.html#isDisabled">isDisabled</a></li>
  407. <li data-name="LuCI.Network.WifiNetwork#isUp"><a href="LuCI.Network.WifiNetwork.html#isUp">isUp</a></li>
  408. <li data-name="LuCI.Network.WifiNetwork#set"><a href="LuCI.Network.WifiNetwork.html#set">set</a></li>
  409. </ul>
  410. <ul class="events itemMembers">
  411. </ul>
  412. </li>
  413. <li class="item" data-name="LuCI.Poll">
  414. <span class="title">
  415. <a href="LuCI.Poll.html">LuCI.Poll</a>
  416. </span>
  417. <ul class="members itemMembers">
  418. </ul>
  419. <ul class="typedefs itemMembers">
  420. </ul>
  421. <ul class="typedefs itemMembers">
  422. </ul>
  423. <ul class="methods itemMembers">
  424. <span class="subtitle">Methods</span>
  425. <li data-name="LuCI.Poll#active"><a href="LuCI.Poll.html#active">active</a></li>
  426. <li data-name="LuCI.Poll#add"><a href="LuCI.Poll.html#add">add</a></li>
  427. <li data-name="LuCI.Poll#remove"><a href="LuCI.Poll.html#remove">remove</a></li>
  428. <li data-name="LuCI.Poll#start"><a href="LuCI.Poll.html#start">start</a></li>
  429. <li data-name="LuCI.Poll#stop"><a href="LuCI.Poll.html#stop">stop</a></li>
  430. </ul>
  431. <ul class="events itemMembers">
  432. </ul>
  433. </li>
  434. <li class="item" data-name="LuCI.Request">
  435. <span class="title">
  436. <a href="LuCI.Request.html">LuCI.Request</a>
  437. </span>
  438. <ul class="members itemMembers">
  439. </ul>
  440. <ul class="typedefs itemMembers">
  441. <span class="subtitle">Typedefs</span>
  442. <li data-name="LuCI.Request.interceptorFn"><a href="LuCI.Request.html#.interceptorFn">interceptorFn</a></li>
  443. <li data-name="LuCI.Request.RequestOptions"><a href="LuCI.Request.html#.RequestOptions">RequestOptions</a></li>
  444. </ul>
  445. <ul class="typedefs itemMembers">
  446. </ul>
  447. <ul class="methods itemMembers">
  448. <span class="subtitle">Methods</span>
  449. <li data-name="LuCI.Request#addInterceptor"><a href="LuCI.Request.html#addInterceptor">addInterceptor</a></li>
  450. <li data-name="LuCI.Request#expandURL"><a href="LuCI.Request.html#expandURL">expandURL</a></li>
  451. <li data-name="LuCI.Request#get"><a href="LuCI.Request.html#get">get</a></li>
  452. <li data-name="LuCI.Request#post"><a href="LuCI.Request.html#post">post</a></li>
  453. <li data-name="LuCI.Request#removeInterceptor"><a href="LuCI.Request.html#removeInterceptor">removeInterceptor</a></li>
  454. <li data-name="LuCI.Request#request"><a href="LuCI.Request.html#request">request</a></li>
  455. </ul>
  456. <ul class="events itemMembers">
  457. </ul>
  458. </li>
  459. <li class="item" data-name="LuCI.Request.poll">
  460. <span class="title">
  461. <a href="LuCI.Request.poll.html">LuCI.Request.poll</a>
  462. </span>
  463. <ul class="members itemMembers">
  464. </ul>
  465. <ul class="typedefs itemMembers">
  466. <span class="subtitle">Typedefs</span>
  467. <li data-name="LuCI.Request.poll~callbackFn"><a href="LuCI.Request.poll.html#~callbackFn">callbackFn</a></li>
  468. </ul>
  469. <ul class="typedefs itemMembers">
  470. </ul>
  471. <ul class="methods itemMembers">
  472. <span class="subtitle">Methods</span>
  473. <li data-name="LuCI.Request.poll#active"><a href="LuCI.Request.poll.html#active">active</a></li>
  474. <li data-name="LuCI.Request.poll#add"><a href="LuCI.Request.poll.html#add">add</a></li>
  475. <li data-name="LuCI.Request.poll#remove"><a href="LuCI.Request.poll.html#remove">remove</a></li>
  476. <li data-name="LuCI.Request.poll#start"><a href="LuCI.Request.poll.html#start">start</a></li>
  477. <li data-name="LuCI.Request.poll#stop"><a href="LuCI.Request.poll.html#stop">stop</a></li>
  478. </ul>
  479. <ul class="events itemMembers">
  480. </ul>
  481. </li>
  482. <li class="item" data-name="LuCI.Response">
  483. <span class="title">
  484. <a href="LuCI.Response.html">LuCI.Response</a>
  485. </span>
  486. <ul class="members itemMembers">
  487. <span class="subtitle">Members</span>
  488. <li data-name="LuCI.Response#duration"><a href="LuCI.Response.html#duration">duration</a></li>
  489. <li data-name="LuCI.Response#headers"><a href="LuCI.Response.html#headers">headers</a></li>
  490. <li data-name="LuCI.Response#ok"><a href="LuCI.Response.html#ok">ok</a></li>
  491. <li data-name="LuCI.Response#status"><a href="LuCI.Response.html#status">status</a></li>
  492. <li data-name="LuCI.Response#statusText"><a href="LuCI.Response.html#statusText">statusText</a></li>
  493. <li data-name="LuCI.Response#url"><a href="LuCI.Response.html#url">url</a></li>
  494. </ul>
  495. <ul class="typedefs itemMembers">
  496. </ul>
  497. <ul class="typedefs itemMembers">
  498. </ul>
  499. <ul class="methods itemMembers">
  500. <span class="subtitle">Methods</span>
  501. <li data-name="LuCI.Response#clone"><a href="LuCI.Response.html#clone">clone</a></li>
  502. <li data-name="LuCI.Response#json"><a href="LuCI.Response.html#json">json</a></li>
  503. <li data-name="LuCI.Response#text"><a href="LuCI.Response.html#text">text</a></li>
  504. </ul>
  505. <ul class="events itemMembers">
  506. </ul>
  507. </li>
  508. <li class="item" data-name="LuCI.rpc">
  509. <span class="title">
  510. <a href="LuCI.rpc.html">LuCI.rpc</a>
  511. </span>
  512. <ul class="members itemMembers">
  513. </ul>
  514. <ul class="typedefs itemMembers">
  515. <span class="subtitle">Typedefs</span>
  516. <li data-name="LuCI.rpc.DeclareOptions"><a href="LuCI.rpc.html#.DeclareOptions">DeclareOptions</a></li>
  517. <li data-name="LuCI.rpc~filterFn"><a href="LuCI.rpc.html#~filterFn">filterFn</a></li>
  518. <li data-name="LuCI.rpc~interceptorFn"><a href="LuCI.rpc.html#~interceptorFn">interceptorFn</a></li>
  519. <li data-name="LuCI.rpc~invokeFn"><a href="LuCI.rpc.html#~invokeFn">invokeFn</a></li>
  520. </ul>
  521. <ul class="typedefs itemMembers">
  522. </ul>
  523. <ul class="methods itemMembers">
  524. <span class="subtitle">Methods</span>
  525. <li data-name="LuCI.rpc#addInterceptor"><a href="LuCI.rpc.html#addInterceptor">addInterceptor</a></li>
  526. <li data-name="LuCI.rpc#declare"><a href="LuCI.rpc.html#declare">declare</a></li>
  527. <li data-name="LuCI.rpc#getBaseURL"><a href="LuCI.rpc.html#getBaseURL">getBaseURL</a></li>
  528. <li data-name="LuCI.rpc#getSessionID"><a href="LuCI.rpc.html#getSessionID">getSessionID</a></li>
  529. <li data-name="LuCI.rpc#getStatusText"><a href="LuCI.rpc.html#getStatusText">getStatusText</a></li>
  530. <li data-name="LuCI.rpc#list"><a href="LuCI.rpc.html#list">list</a></li>
  531. <li data-name="LuCI.rpc#removeInterceptor"><a href="LuCI.rpc.html#removeInterceptor">removeInterceptor</a></li>
  532. <li data-name="LuCI.rpc#setBaseURL"><a href="LuCI.rpc.html#setBaseURL">setBaseURL</a></li>
  533. <li data-name="LuCI.rpc#setSessionID"><a href="LuCI.rpc.html#setSessionID">setSessionID</a></li>
  534. </ul>
  535. <ul class="events itemMembers">
  536. </ul>
  537. </li>
  538. <li class="item" data-name="LuCI.uci">
  539. <span class="title">
  540. <a href="LuCI.uci.html">LuCI.uci</a>
  541. </span>
  542. <ul class="members itemMembers">
  543. </ul>
  544. <ul class="typedefs itemMembers">
  545. <span class="subtitle">Typedefs</span>
  546. <li data-name="LuCI.uci.ChangeRecord"><a href="LuCI.uci.html#.ChangeRecord">ChangeRecord</a></li>
  547. <li data-name="LuCI.uci.SectionObject"><a href="LuCI.uci.html#.SectionObject">SectionObject</a></li>
  548. <li data-name="LuCI.uci~sectionsFn"><a href="LuCI.uci.html#~sectionsFn">sectionsFn</a></li>
  549. </ul>
  550. <ul class="typedefs itemMembers">
  551. </ul>
  552. <ul class="methods itemMembers">
  553. <span class="subtitle">Methods</span>
  554. <li data-name="LuCI.uci#add"><a href="LuCI.uci.html#add">add</a></li>
  555. <li data-name="LuCI.uci#apply"><a href="LuCI.uci.html#apply">apply</a></li>
  556. <li data-name="LuCI.uci#changes"><a href="LuCI.uci.html#changes">changes</a></li>
  557. <li data-name="LuCI.uci#createSID"><a href="LuCI.uci.html#createSID">createSID</a></li>
  558. <li data-name="LuCI.uci#get"><a href="LuCI.uci.html#get">get</a></li>
  559. <li data-name="LuCI.uci#get_first"><a href="LuCI.uci.html#get_first">get_first</a></li>
  560. <li data-name="LuCI.uci#load"><a href="LuCI.uci.html#load">load</a></li>
  561. <li data-name="LuCI.uci#move"><a href="LuCI.uci.html#move">move</a></li>
  562. <li data-name="LuCI.uci#remove"><a href="LuCI.uci.html#remove">remove</a></li>
  563. <li data-name="LuCI.uci#resolveSID"><a href="LuCI.uci.html#resolveSID">resolveSID</a></li>
  564. <li data-name="LuCI.uci#save"><a href="LuCI.uci.html#save">save</a></li>
  565. <li data-name="LuCI.uci#sections"><a href="LuCI.uci.html#sections">sections</a></li>
  566. <li data-name="LuCI.uci#set"><a href="LuCI.uci.html#set">set</a></li>
  567. <li data-name="LuCI.uci#set_first"><a href="LuCI.uci.html#set_first">set_first</a></li>
  568. <li data-name="LuCI.uci#unload"><a href="LuCI.uci.html#unload">unload</a></li>
  569. <li data-name="LuCI.uci#unset"><a href="LuCI.uci.html#unset">unset</a></li>
  570. <li data-name="LuCI.uci#unset_first"><a href="LuCI.uci.html#unset_first">unset_first</a></li>
  571. </ul>
  572. <ul class="events itemMembers">
  573. </ul>
  574. </li>
  575. <li class="item" data-name="LuCI.view">
  576. <span class="title">
  577. <a href="LuCI.view.html">LuCI.view</a>
  578. </span>
  579. <ul class="members itemMembers">
  580. </ul>
  581. <ul class="typedefs itemMembers">
  582. </ul>
  583. <ul class="typedefs itemMembers">
  584. </ul>
  585. <ul class="methods itemMembers">
  586. <span class="subtitle">Methods</span>
  587. <li data-name="LuCI.view#addFooter"><a href="LuCI.view.html#addFooter">addFooter</a></li>
  588. <li data-name="LuCI.view#handleReset"><a href="LuCI.view.html#handleReset">handleReset</a></li>
  589. <li data-name="LuCI.view#handleSave"><a href="LuCI.view.html#handleSave">handleSave</a></li>
  590. <li data-name="LuCI.view#handleSaveApply"><a href="LuCI.view.html#handleSaveApply">handleSaveApply</a></li>
  591. <li data-name="LuCI.view#load"><a href="LuCI.view.html#load">load</a></li>
  592. <li data-name="LuCI.view#render"><a href="LuCI.view.html#render">render</a></li>
  593. </ul>
  594. <ul class="events itemMembers">
  595. </ul>
  596. </li>
  597. <li class="item" data-name="LuCI.XHR">
  598. <span class="title">
  599. <a href="LuCI.XHR.html">LuCI.XHR</a>
  600. </span>
  601. <ul class="members itemMembers">
  602. </ul>
  603. <ul class="typedefs itemMembers">
  604. </ul>
  605. <ul class="typedefs itemMembers">
  606. </ul>
  607. <ul class="methods itemMembers">
  608. <span class="subtitle">Methods</span>
  609. <li data-name="LuCI.XHR#abort"><a href="LuCI.XHR.html#abort">abort</a></li>
  610. <li data-name="LuCI.XHR#busy"><a href="LuCI.XHR.html#busy">busy</a></li>
  611. <li data-name="LuCI.XHR#cancel"><a href="LuCI.XHR.html#cancel">cancel</a></li>
  612. <li data-name="LuCI.XHR#get"><a href="LuCI.XHR.html#get">get</a></li>
  613. <li data-name="LuCI.XHR#post"><a href="LuCI.XHR.html#post">post</a></li>
  614. <li data-name="LuCI.XHR#send_form"><a href="LuCI.XHR.html#send_form">send_form</a></li>
  615. </ul>
  616. <ul class="events itemMembers">
  617. </ul>
  618. </li>
  619. </ul>
  620. </div>
  621. <div class="main">
  622. <h1 class="page-title" data-filename="LuCI.Network.WifiDevice.html">Class: WifiDevice</h1>
  623. <section>
  624. <header>
  625. <h2>
  626. <span class="ancestors"><a href="LuCI.html">LuCI</a><a href="LuCI.Network.html">.Network</a>.</span>
  627. WifiDevice
  628. </h2>
  629. <div class="class-description"><p>A <code>Network.WifiDevice</code> class instance represents a wireless radio device
  630. present on the system and provides wireless capability information as
  631. well as methods for enumerating related wireless networks.</p></div>
  632. </header>
  633. <article>
  634. <div class="container-overview">
  635. <dt>
  636. <div class="nameContainer">
  637. <h4 class="name" id="WifiDevice">
  638. new LuCI.Network.WifiDevice<span class="signature">()</span>
  639. </h4>
  640. <div class="tag-source">
  641. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3013">line 3013</a>
  642. </div>
  643. </div>
  644. </dt>
  645. <dd>
  646. <dl class="details">
  647. </dl>
  648. </dd>
  649. </div>
  650. <h3 class="subsection-title">Methods</h3>
  651. <dl>
  652. <dt>
  653. <div class="nameContainer">
  654. <h4 class="name" id="addWifiNetwork">
  655. addWifiNetwork<span class="signature">(<span class="optional">options</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;(null|<a href="LuCI.Network.WifiNetwork.html">LuCI.Network.WifiNetwork</a>)>}</span>
  656. </h4>
  657. <div class="tag-source">
  658. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3279">line 3279</a>
  659. </div>
  660. </div>
  661. </dt>
  662. <dd>
  663. <div class="description">
  664. <p>Adds a new wireless network associated with this radio device to the
  665. configuration and sets its options to the provided values.</p>
  666. </div>
  667. <table class="params">
  668. <thead>
  669. <tr>
  670. <th>Name</th>
  671. <th>Type</th>
  672. <th class="last">Description</th>
  673. </tr>
  674. </thead>
  675. <tbody>
  676. <tr>
  677. <td class="name"><code>options</code></td>
  678. <td class="type">
  679. <span class="param-type">Object.&lt;string, (string|Array.&lt;string>)></span>
  680. </td>
  681. <td class="description last">
  682. <span class="optional">optional</span>
  683. <p>The options to set for the newly added wireless network.</p></td>
  684. </tr>
  685. </tbody>
  686. </table>
  687. <dl class="details">
  688. </dl>
  689. <h5>Returns:</h5>
  690. <table class="params">
  691. <thead>
  692. <tr>
  693. <th>Type</th>
  694. <th class="last">Description</th>
  695. </tr>
  696. </thead>
  697. <tbody>
  698. <tr>
  699. <td class="type">
  700. Promise.&lt;(null|<a href="LuCI.Network.WifiNetwork.html">LuCI.Network.WifiNetwork</a>)>
  701. </td>
  702. <td class="description last">Returns a promise resolving to a <code>WifiNetwork</code> instance describing
  703. the newly added wireless network or <code>null</code> if the given options
  704. were invalid.</td>
  705. </tr>
  706. </tbody>
  707. </table>
  708. </dd>
  709. <dt>
  710. <div class="nameContainer">
  711. <h4 class="name" id="deleteWifiNetwork">
  712. deleteWifiNetwork<span class="signature">(network)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;boolean>}</span>
  713. </h4>
  714. <div class="tag-source">
  715. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3304">line 3304</a>
  716. </div>
  717. </div>
  718. </dt>
  719. <dd>
  720. <div class="description">
  721. <p>Deletes the wireless network with the given name associated with this
  722. radio device.</p>
  723. </div>
  724. <table class="params">
  725. <thead>
  726. <tr>
  727. <th>Name</th>
  728. <th>Type</th>
  729. <th class="last">Description</th>
  730. </tr>
  731. </thead>
  732. <tbody>
  733. <tr>
  734. <td class="name"><code>network</code></td>
  735. <td class="type">
  736. <span class="param-type">string</span>
  737. </td>
  738. <td class="description last">
  739. <p>The name of the wireless network to lookup. This may be either an uci
  740. configuration section ID, a network ID in the form <code>radio#.network#</code>
  741. or a Linux network device name like <code>wlan0</code> which is resolved to the
  742. corresponding configuration section through <code>ubus</code> runtime information.</p></td>
  743. </tr>
  744. </tbody>
  745. </table>
  746. <dl class="details">
  747. </dl>
  748. <h5>Returns:</h5>
  749. <table class="params">
  750. <thead>
  751. <tr>
  752. <th>Type</th>
  753. <th class="last">Description</th>
  754. </tr>
  755. </thead>
  756. <tbody>
  757. <tr>
  758. <td class="type">
  759. Promise.&lt;boolean>
  760. </td>
  761. <td class="description last">Returns a promise resolving to <code>true</code> when the wireless network was
  762. successfully deleted from the configuration or <code>false</code> when the given
  763. network could not be found or if the found network was not associated
  764. with this wireless radio device.</td>
  765. </tr>
  766. </tbody>
  767. </table>
  768. </dd>
  769. <dt>
  770. <div class="nameContainer">
  771. <h4 class="name" id="get">
  772. get<span class="signature">(opt)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{null|string|Array.&lt;string>}</span>
  773. </h4>
  774. <div class="tag-source">
  775. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3053">line 3053</a>
  776. </div>
  777. </div>
  778. </dt>
  779. <dd>
  780. <div class="description">
  781. <p>Read the given UCI option value of this wireless device.</p>
  782. </div>
  783. <table class="params">
  784. <thead>
  785. <tr>
  786. <th>Name</th>
  787. <th>Type</th>
  788. <th class="last">Description</th>
  789. </tr>
  790. </thead>
  791. <tbody>
  792. <tr>
  793. <td class="name"><code>opt</code></td>
  794. <td class="type">
  795. <span class="param-type">string</span>
  796. </td>
  797. <td class="description last">
  798. <p>The UCI option name to read.</p></td>
  799. </tr>
  800. </tbody>
  801. </table>
  802. <dl class="details">
  803. </dl>
  804. <h5>Returns:</h5>
  805. <table class="params">
  806. <thead>
  807. <tr>
  808. <th>Type</th>
  809. <th class="last">Description</th>
  810. </tr>
  811. </thead>
  812. <tbody>
  813. <tr>
  814. <td class="type">
  815. null
  816. |
  817. string
  818. |
  819. Array.&lt;string>
  820. </td>
  821. <td class="description last">Returns the UCI option value or <code>null</code> if the requested option is
  822. not found.</td>
  823. </tr>
  824. </tbody>
  825. </table>
  826. </dd>
  827. <dt>
  828. <div class="nameContainer">
  829. <h4 class="name" id="getHTModes">
  830. getHTModes<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Array.&lt;string>}</span>
  831. </h4>
  832. <div class="tag-source">
  833. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3131">line 3131</a>
  834. </div>
  835. </div>
  836. </dt>
  837. <dd>
  838. <div class="description">
  839. <p>Gets a list of supported htmodes.</p>
  840. <p>The htmode values describe the wide-frequency options supported by
  841. the wireless phy.</p>
  842. </div>
  843. <dl class="details">
  844. </dl>
  845. <h5>Returns:</h5>
  846. <table class="params">
  847. <thead>
  848. <tr>
  849. <th>Type</th>
  850. <th class="last">Description</th>
  851. </tr>
  852. </thead>
  853. <tbody>
  854. <tr>
  855. <td class="type">
  856. Array.&lt;string>
  857. </td>
  858. <td class="description last">Returns an array of valid htmode values for this radio. Currently
  859. known mode values are:
  860. <ul>
  861. <li><code>HT20</code> - applicable to IEEE 802.11n, 20 MHz wide channels</li>
  862. <li><code>HT40</code> - applicable to IEEE 802.11n, 40 MHz wide channels</li>
  863. <li><code>VHT20</code> - applicable to IEEE 802.11ac, 20 MHz wide channels</li>
  864. <li><code>VHT40</code> - applicable to IEEE 802.11ac, 40 MHz wide channels</li>
  865. <li><code>VHT80</code> - applicable to IEEE 802.11ac, 80 MHz wide channels</li>
  866. <li><code>VHT160</code> - applicable to IEEE 802.11ac, 160 MHz wide channels</li>
  867. </ul></td>
  868. </tr>
  869. </tbody>
  870. </table>
  871. </dd>
  872. <dt>
  873. <div class="nameContainer">
  874. <h4 class="name" id="getHWModes">
  875. getHWModes<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Array.&lt;string>}</span>
  876. </h4>
  877. <div class="tag-source">
  878. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3110">line 3110</a>
  879. </div>
  880. </div>
  881. </dt>
  882. <dd>
  883. <div class="description">
  884. <p>Gets a list of supported hwmodes.</p>
  885. <p>The hwmode values describe the frequency band and wireless standard
  886. versions supported by the wireless phy.</p>
  887. </div>
  888. <dl class="details">
  889. </dl>
  890. <h5>Returns:</h5>
  891. <table class="params">
  892. <thead>
  893. <tr>
  894. <th>Type</th>
  895. <th class="last">Description</th>
  896. </tr>
  897. </thead>
  898. <tbody>
  899. <tr>
  900. <td class="type">
  901. Array.&lt;string>
  902. </td>
  903. <td class="description last">Returns an array of valid hwmode values for this radio. Currently
  904. known mode values are:
  905. <ul>
  906. <li><code>a</code> - Legacy 802.11a mode, 5 GHz, up to 54 Mbit/s</li>
  907. <li><code>b</code> - Legacy 802.11b mode, 2.4 GHz, up to 11 Mbit/s</li>
  908. <li><code>g</code> - Legacy 802.11g mode, 2.4 GHz, up to 54 Mbit/s</li>
  909. <li><code>n</code> - IEEE 802.11n mode, 2.4 or 5 GHz, up to 600 Mbit/s</li>
  910. <li><code>ac</code> - IEEE 802.11ac mode, 5 GHz, up to 6770 Mbit/s</li>
  911. </ul></td>
  912. </tr>
  913. </tbody>
  914. </table>
  915. </dd>
  916. <dt>
  917. <div class="nameContainer">
  918. <h4 class="name" id="getI18n">
  919. getI18n<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string}</span>
  920. </h4>
  921. <div class="tag-source">
  922. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3142">line 3142</a>
  923. </div>
  924. </div>
  925. </dt>
  926. <dd>
  927. <div class="description">
  928. <p>Get a string describing the wireless radio hardware.</p>
  929. </div>
  930. <dl class="details">
  931. </dl>
  932. <h5>Returns:</h5>
  933. <table class="params">
  934. <thead>
  935. <tr>
  936. <th>Type</th>
  937. <th class="last">Description</th>
  938. </tr>
  939. </thead>
  940. <tbody>
  941. <tr>
  942. <td class="type">
  943. string
  944. </td>
  945. <td class="description last">Returns the description string.</td>
  946. </tr>
  947. </tbody>
  948. </table>
  949. </dd>
  950. <dt>
  951. <div class="nameContainer">
  952. <h4 class="name" id="getName">
  953. getName<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string}</span>
  954. </h4>
  955. <div class="tag-source">
  956. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3091">line 3091</a>
  957. </div>
  958. </div>
  959. </dt>
  960. <dd>
  961. <div class="description">
  962. <p>Get the configuration name of this wireless radio.</p>
  963. </div>
  964. <dl class="details">
  965. </dl>
  966. <h5>Returns:</h5>
  967. <table class="params">
  968. <thead>
  969. <tr>
  970. <th>Type</th>
  971. <th class="last">Description</th>
  972. </tr>
  973. </thead>
  974. <tbody>
  975. <tr>
  976. <td class="type">
  977. string
  978. </td>
  979. <td class="description last">Returns the UCI section name (e.g. <code>radio0</code>) of the corresponding
  980. radio configuration which also serves as unique logical identifier
  981. for the wireless phy.</td>
  982. </tr>
  983. </tbody>
  984. </table>
  985. </dd>
  986. <dt>
  987. <div class="nameContainer">
  988. <h4 class="name" id="getScanList">
  989. getScanList<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;Array.&lt;<a href="LuCI.Network.html#.WifiScanResult">LuCI.Network.WifiScanResult</a>>>}</span>
  990. </h4>
  991. <div class="tag-source">
  992. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3203">line 3203</a>
  993. </div>
  994. </div>
  995. </dt>
  996. <dd>
  997. <div class="description">
  998. <p>Trigger a wireless scan on this radio device and obtain a list of
  999. nearby networks.</p>
  1000. </div>
  1001. <dl class="details">
  1002. </dl>
  1003. <h5>Returns:</h5>
  1004. <table class="params">
  1005. <thead>
  1006. <tr>
  1007. <th>Type</th>
  1008. <th class="last">Description</th>
  1009. </tr>
  1010. </thead>
  1011. <tbody>
  1012. <tr>
  1013. <td class="type">
  1014. Promise.&lt;Array.&lt;<a href="LuCI.Network.html#.WifiScanResult">LuCI.Network.WifiScanResult</a>>>
  1015. </td>
  1016. <td class="description last">Returns a promise resolving to an array of scan result objects
  1017. describing the networks found in the vincinity.</td>
  1018. </tr>
  1019. </tbody>
  1020. </table>
  1021. </dd>
  1022. <dt>
  1023. <div class="nameContainer">
  1024. <h4 class="name" id="getWifiNetwork">
  1025. getWifiNetwork<span class="signature">(network)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;<a href="LuCI.Network.WifiNetwork.html">LuCI.Network.WifiNetwork</a>>}</span>
  1026. </h4>
  1027. <div class="tag-source">
  1028. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3236">line 3236</a>
  1029. </div>
  1030. </div>
  1031. </dt>
  1032. <dd>
  1033. <div class="description">
  1034. <p>Get the wifi network of the given name belonging to this radio device</p>
  1035. </div>
  1036. <table class="params">
  1037. <thead>
  1038. <tr>
  1039. <th>Name</th>
  1040. <th>Type</th>
  1041. <th class="last">Description</th>
  1042. </tr>
  1043. </thead>
  1044. <tbody>
  1045. <tr>
  1046. <td class="name"><code>network</code></td>
  1047. <td class="type">
  1048. <span class="param-type">string</span>
  1049. </td>
  1050. <td class="description last">
  1051. <p>The name of the wireless network to lookup. This may be either an uci
  1052. configuration section ID, a network ID in the form <code>radio#.network#</code>
  1053. or a Linux network device name like <code>wlan0</code> which is resolved to the
  1054. corresponding configuration section through <code>ubus</code> runtime information.</p></td>
  1055. </tr>
  1056. </tbody>
  1057. </table>
  1058. <dl class="details">
  1059. </dl>
  1060. <h5>Returns:</h5>
  1061. <table class="params">
  1062. <thead>
  1063. <tr>
  1064. <th>Type</th>
  1065. <th class="last">Description</th>
  1066. </tr>
  1067. </thead>
  1068. <tbody>
  1069. <tr>
  1070. <td class="type">
  1071. Promise.&lt;<a href="LuCI.Network.WifiNetwork.html">LuCI.Network.WifiNetwork</a>>
  1072. </td>
  1073. <td class="description last">Returns a promise resolving to a <code>Network.WifiNetwork</code> instance
  1074. representing the wireless network and rejecting with <code>null</code> if
  1075. the given network could not be found or is not associated with
  1076. this radio device.</td>
  1077. </tr>
  1078. </tbody>
  1079. </table>
  1080. </dd>
  1081. <dt>
  1082. <div class="nameContainer">
  1083. <h4 class="name" id="getWifiNetworks">
  1084. getWifiNetworks<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;Array.&lt;<a href="LuCI.Network.WifiNetwork.html">LuCI.Network.WifiNetwork</a>>>}</span>
  1085. </h4>
  1086. <div class="tag-source">
  1087. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3255">line 3255</a>
  1088. </div>
  1089. </div>
  1090. </dt>
  1091. <dd>
  1092. <div class="description">
  1093. <p>Get all wireless networks associated with this wireless radio device.</p>
  1094. </div>
  1095. <dl class="details">
  1096. </dl>
  1097. <h5>Returns:</h5>
  1098. <table class="params">
  1099. <thead>
  1100. <tr>
  1101. <th>Type</th>
  1102. <th class="last">Description</th>
  1103. </tr>
  1104. </thead>
  1105. <tbody>
  1106. <tr>
  1107. <td class="type">
  1108. Promise.&lt;Array.&lt;<a href="LuCI.Network.WifiNetwork.html">LuCI.Network.WifiNetwork</a>>>
  1109. </td>
  1110. <td class="description last">Returns a promise resolving to an array of <code>Network.WifiNetwork</code>
  1111. instances respresenting the wireless networks associated with this
  1112. radio device.</td>
  1113. </tr>
  1114. </tbody>
  1115. </table>
  1116. </dd>
  1117. <dt>
  1118. <div class="nameContainer">
  1119. <h4 class="name" id="isDisabled">
  1120. isDisabled<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{boolean}</span>
  1121. </h4>
  1122. <div class="tag-source">
  1123. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3079">line 3079</a>
  1124. </div>
  1125. </div>
  1126. </dt>
  1127. <dd>
  1128. <div class="description">
  1129. <p>Checks whether this wireless radio is disabled.</p>
  1130. </div>
  1131. <dl class="details">
  1132. </dl>
  1133. <h5>Returns:</h5>
  1134. <table class="params">
  1135. <thead>
  1136. <tr>
  1137. <th>Type</th>
  1138. <th class="last">Description</th>
  1139. </tr>
  1140. </thead>
  1141. <tbody>
  1142. <tr>
  1143. <td class="type">
  1144. boolean
  1145. </td>
  1146. <td class="description last">Returns <code>true</code> when the wireless radio is marked as disabled in <code>ubus</code>
  1147. runtime state or when the <code>disabled</code> option is set in the corresponding
  1148. UCI configuration.</td>
  1149. </tr>
  1150. </tbody>
  1151. </table>
  1152. </dd>
  1153. <dt>
  1154. <div class="nameContainer">
  1155. <h4 class="name" id="isUp">
  1156. isUp<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{boolean}</span>
  1157. </h4>
  1158. <div class="tag-source">
  1159. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3214">line 3214</a>
  1160. </div>
  1161. </div>
  1162. </dt>
  1163. <dd>
  1164. <div class="description">
  1165. <p>Check whether the wireless radio is marked as up in the <code>ubus</code>
  1166. runtime state.</p>
  1167. </div>
  1168. <dl class="details">
  1169. </dl>
  1170. <h5>Returns:</h5>
  1171. <table class="params">
  1172. <thead>
  1173. <tr>
  1174. <th>Type</th>
  1175. <th class="last">Description</th>
  1176. </tr>
  1177. </thead>
  1178. <tbody>
  1179. <tr>
  1180. <td class="type">
  1181. boolean
  1182. </td>
  1183. <td class="description last">Returns <code>true</code> when the radio device is up, else <code>false</code>.</td>
  1184. </tr>
  1185. </tbody>
  1186. </table>
  1187. </dd>
  1188. <dt>
  1189. <div class="nameContainer">
  1190. <h4 class="name" id="set">
  1191. set<span class="signature">(opt, val)</span>
  1192. </h4>
  1193. <div class="tag-source">
  1194. <a href="network.js.html">network.js</a>, <a href="network.js.html#line3067">line 3067</a>
  1195. </div>
  1196. </div>
  1197. </dt>
  1198. <dd>
  1199. <div class="description">
  1200. <p>Set the given UCI option of this network to the given value.</p>
  1201. </div>
  1202. <table class="params">
  1203. <thead>
  1204. <tr>
  1205. <th>Name</th>
  1206. <th>Type</th>
  1207. <th class="last">Description</th>
  1208. </tr>
  1209. </thead>
  1210. <tbody>
  1211. <tr>
  1212. <td class="name"><code>opt</code></td>
  1213. <td class="type">
  1214. <span class="param-type">string</span>
  1215. </td>
  1216. <td class="description last">
  1217. <p>The name of the UCI option to set.</p></td>
  1218. </tr>
  1219. <tr>
  1220. <td class="name"><code>val</code></td>
  1221. <td class="type">
  1222. <span class="param-type">null</span>
  1223. |
  1224. <span class="param-type">string</span>
  1225. |
  1226. <span class="param-type">Array.&lt;string></span>
  1227. </td>
  1228. <td class="description last">
  1229. <p>The value to set or <code>null</code> to remove the given option from the
  1230. configuration.</p></td>
  1231. </tr>
  1232. </tbody>
  1233. </table>
  1234. <dl class="details">
  1235. </dl>
  1236. </dd>
  1237. </dl>
  1238. </article>
  1239. </section>
  1240. <footer>
  1241. Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a> on Thu Nov 07 2019 12:36:06 GMT+0100 (Central European Standard Time)
  1242. </footer>
  1243. </div>
  1244. </div>
  1245. <script>prettyPrint();</script>
  1246. <script src="scripts/jaguar.js"></script>
  1247. </body>
  1248. </html>