int6kstat.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int6kstat.c - Qualcomm Atheros INT6x00 Link Statistics
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. /*====================================================================*
  17. * system header files;
  18. *--------------------------------------------------------------------*/
  19. #include <unistd.h>
  20. #include <stdlib.h>
  21. #include <stdint.h>
  22. #include <limits.h>
  23. #include <inttypes.h>
  24. /*====================================================================*
  25. * custom header files;
  26. *--------------------------------------------------------------------*/
  27. #include "../tools/getoptv.h"
  28. #include "../tools/putoptv.h"
  29. #include "../tools/memory.h"
  30. #include "../tools/number.h"
  31. #include "../tools/symbol.h"
  32. #include "../tools/types.h"
  33. #include "../tools/flags.h"
  34. #include "../tools/files.h"
  35. #include "../tools/error.h"
  36. #include "../plc/plc.h"
  37. /*====================================================================*
  38. * custom source files;
  39. *--------------------------------------------------------------------*/
  40. #ifndef MAKEFILE
  41. #include "../plc/Display.c"
  42. #include "../plc/Failure.c"
  43. #include "../plc/Request.c"
  44. #include "../plc/ReadMME.c"
  45. #include "../plc/SendMME.c"
  46. #include "../plc/LocalDevices.c"
  47. #include "../plc/NetworkInformation1.c"
  48. #include "../plc/Topology1.c"
  49. #include "../plc/Devices.c"
  50. #include "../plc/chipset.c"
  51. #include "../plc/Platform.c"
  52. #endif
  53. #ifndef MAKEFILE
  54. #include "../tools/error.c"
  55. #include "../tools/getoptv.c"
  56. #include "../tools/putoptv.c"
  57. #include "../tools/version.c"
  58. #include "../tools/uintspec.c"
  59. #include "../tools/hexdump.c"
  60. #include "../tools/hexencode.c"
  61. #include "../tools/hexdecode.c"
  62. #include "../tools/hexstring.c"
  63. #include "../tools/todigit.c"
  64. #include "../tools/synonym.c"
  65. #include "../tools/typename.c"
  66. #endif
  67. #ifndef MAKEFILE
  68. #include "../ether/openchannel.c"
  69. #include "../ether/closechannel.c"
  70. #include "../ether/readpacket.c"
  71. #include "../ether/sendpacket.c"
  72. #include "../ether/channel.c"
  73. #endif
  74. #ifndef MAKEFILE
  75. #include "../mme/EthernetHeader.c"
  76. #include "../mme/QualcommHeader1.c"
  77. #include "../mme/QualcommHeader.c"
  78. #include "../mme/UnwantedMessage.c"
  79. #include "../mme/MMECode.c"
  80. #endif
  81. /*====================================================================*
  82. * program constants;
  83. *--------------------------------------------------------------------*/
  84. #define INT6KSTAT_LOOP 1
  85. #define INT6KSTAT_WAIT 0
  86. /*====================================================================*
  87. * program constants;
  88. *--------------------------------------------------------------------*/
  89. static const struct _term_ linkids [] =
  90. {
  91. {
  92. "CSMA-ALL",
  93. "0xFC"
  94. },
  95. {
  96. "CSMA-CAP0",
  97. "0x00"
  98. },
  99. {
  100. "CSMA-CAP1",
  101. "0x01"
  102. },
  103. {
  104. "CSMA-CAP2",
  105. "0x02"
  106. },
  107. {
  108. "CSMA-CAP3",
  109. "0x03"
  110. },
  111. {
  112. "CSMA-PEER",
  113. "0xF8"
  114. },
  115. };
  116. static const struct _term_ directions [] =
  117. {
  118. {
  119. "both",
  120. "2"
  121. },
  122. {
  123. "rx",
  124. "1"
  125. },
  126. {
  127. "tx",
  128. "0"
  129. }
  130. };
  131. /*====================================================================*
  132. * programs variables;
  133. *--------------------------------------------------------------------*/
  134. #ifndef __GNUC__
  135. #pragma pack (push,1)
  136. #endif
  137. typedef struct __packed thunderbolt_transmit
  138. {
  139. uint64_t NUMTXMPDU_ACKD;
  140. uint64_t NUMTXMPDU_COLL;
  141. uint64_t NUMTXMPDU_FAIL;
  142. uint64_t NUMTXPBS_PASSED;
  143. uint64_t NUMTXPBS_FAILED;
  144. }
  145. transmit;
  146. typedef struct __packed thunderbolt_receive
  147. {
  148. uint64_t NUMRXMPDU_ACKD;
  149. uint64_t NUMRXMPDU_FAIL;
  150. uint64_t NUMRXPBS_PASSED;
  151. uint64_t NUMRXPBS_FAILED;
  152. uint64_t SUMTURBOBER_PASSED;
  153. uint64_t SUMTURBOBER_FAILED;
  154. uint8_t NUMRXINTERVALS;
  155. uint8_t RXINTERVALSTATS [1];
  156. }
  157. receive;
  158. typedef struct __packed thunderbolt_interval
  159. {
  160. uint8_t RXPHYRATE_MBPS_0;
  161. uint64_t NUMRXPBS_PASSED;
  162. uint64_t NUMRXPBS_FAILED;
  163. uint64_t SUMTURBOBER_PASSED;
  164. uint64_t SUMTURBOBER_FAILED;
  165. }
  166. interval;
  167. #ifndef __GNUC__
  168. #pragma pack (pop)
  169. #endif
  170. /*====================================================================*
  171. *
  172. * unsigned thunderbolt_error_rate (uint64_t passed, uint64_t failed);
  173. *
  174. * compute error rate for a given quantity; the error rate is the
  175. * ratio of failures to attempts;
  176. *
  177. *--------------------------------------------------------------------*/
  178. static float thunderbolt_error_rate (uint64_t passed, uint64_t failed)
  179. {
  180. if ((passed) || (failed))
  181. {
  182. return ((float) (failed * 100) / (float) (passed + failed));
  183. }
  184. return (0);
  185. }
  186. /*====================================================================*
  187. *
  188. * float thunderbolt_fec_bit_error_rate (struct thunderbolt_receive * receive);
  189. *
  190. * compute the FEC-BER from the VS_LINK_STATS when DIRECTION=1 and
  191. * LID=0xF8;
  192. *
  193. *--------------------------------------------------------------------*/
  194. static float thunderbolt_fec_bit_error_rate (struct thunderbolt_receive * receive)
  195. {
  196. float FECBitErrorRate = 0;
  197. if (receive->SUMTURBOBER_PASSED || receive->SUMTURBOBER_FAILED)
  198. {
  199. float TotalSumOfBitError = 100 * (float) (receive->SUMTURBOBER_PASSED + receive->SUMTURBOBER_FAILED);
  200. float TotalSumOfBits = 8 * 520 * (float) (receive->NUMRXPBS_PASSED + receive->NUMRXPBS_FAILED);
  201. FECBitErrorRate = TotalSumOfBitError / TotalSumOfBits;
  202. }
  203. return (FECBitErrorRate);
  204. }
  205. /*====================================================================*
  206. *
  207. * void thunderbolt_transmit_statistics (struct thunderbolt_transmit * transmit);
  208. *
  209. * display transmit statistics in fixed field format;
  210. *
  211. *--------------------------------------------------------------------*/
  212. static void thunderbolt_transmit_statistics (struct thunderbolt_transmit * transmit)
  213. {
  214. printf (" TX");
  215. printf (" %20" PRId64, transmit->NUMTXPBS_PASSED);
  216. printf (" %20" PRId64, transmit->NUMTXPBS_FAILED);
  217. printf (" %6.2f%%", thunderbolt_error_rate (transmit->NUMTXPBS_PASSED, transmit->NUMTXPBS_FAILED));
  218. printf (" %20" PRId64, transmit->NUMTXMPDU_ACKD);
  219. printf (" %20" PRId64, transmit->NUMTXMPDU_FAIL);
  220. printf (" %20" PRId64, transmit->NUMTXMPDU_COLL);
  221. printf (" %6.2f%%", thunderbolt_error_rate (transmit->NUMTXMPDU_ACKD, transmit->NUMTXMPDU_FAIL));
  222. printf ("\n");
  223. return;
  224. }
  225. /*====================================================================*
  226. *
  227. * void thunderbolt_receive_statistics (struct thunderbolt_receive * receive);
  228. *
  229. * display receive statistics in fixed field format;
  230. *
  231. *--------------------------------------------------------------------*/
  232. static void thunderbolt_receive_statistics (struct thunderbolt_receive * receive)
  233. {
  234. printf (" RX");
  235. printf (" %20" PRId64, receive->NUMRXPBS_PASSED);
  236. printf (" %20" PRId64, receive->NUMRXPBS_FAILED);
  237. printf (" %6.2f%%", thunderbolt_error_rate (receive->NUMRXPBS_PASSED, receive->NUMRXPBS_FAILED));
  238. printf (" %20" PRId64, receive->NUMRXMPDU_ACKD);
  239. printf (" %20" PRId64, receive->NUMRXMPDU_FAIL);
  240. printf (" %6.2f%%", thunderbolt_error_rate (receive->NUMRXMPDU_ACKD, receive->NUMRXMPDU_FAIL));
  241. printf ("\n");
  242. return;
  243. }
  244. /*====================================================================*
  245. *
  246. * void Receive (struct thunderbolt_receive * receive);
  247. *
  248. * display receive statistics in fixed field format for each slot;
  249. * the last line sumarizes results for all slots;
  250. *
  251. *--------------------------------------------------------------------*/
  252. static void thunderbolt_receive_interval (struct thunderbolt_receive * receive)
  253. {
  254. struct thunderbolt_interval * interval = (struct thunderbolt_interval *) (receive->RXINTERVALSTATS);
  255. uint8_t slot = 0;
  256. while (slot < receive->NUMRXINTERVALS)
  257. {
  258. printf (" %1d", slot);
  259. printf (" %3d", interval->RXPHYRATE_MBPS_0);
  260. printf (" %20" PRId64, interval->NUMRXPBS_PASSED);
  261. printf (" %20" PRId64, interval->NUMRXPBS_FAILED);
  262. printf (" %6.2f%%", thunderbolt_error_rate (interval->NUMRXPBS_PASSED, interval->NUMRXPBS_FAILED));
  263. printf (" %20" PRId64, interval->SUMTURBOBER_PASSED);
  264. printf (" %20" PRId64, interval->SUMTURBOBER_FAILED);
  265. printf (" %6.2f%%", thunderbolt_error_rate (interval->SUMTURBOBER_PASSED, interval->SUMTURBOBER_FAILED));
  266. printf ("\n");
  267. interval++;
  268. slot++;
  269. }
  270. printf (" ALL");
  271. printf (" %20" PRId64, receive->NUMRXPBS_PASSED);
  272. printf (" %20" PRId64, receive->NUMRXPBS_FAILED);
  273. printf (" %6.2f%%", thunderbolt_error_rate (receive->NUMRXPBS_PASSED, receive->NUMRXPBS_FAILED));
  274. printf (" %20" PRId64, receive->SUMTURBOBER_PASSED);
  275. printf (" %20" PRId64, receive->SUMTURBOBER_FAILED);
  276. printf (" %6.2f%%", thunderbolt_error_rate (receive->SUMTURBOBER_PASSED, receive->SUMTURBOBER_FAILED));
  277. printf (" %6.2f%%", thunderbolt_fec_bit_error_rate (receive));
  278. printf ("\n");
  279. return;
  280. }
  281. /*====================================================================*
  282. *
  283. * signed thunderbolt_link_statistics (struct plc * plc);
  284. *
  285. *--------------------------------------------------------------------*/
  286. signed thunderbolt_link_statistics (struct plc * plc)
  287. {
  288. struct channel * channel = (struct channel *) (plc->channel);
  289. struct message * message = (struct message *) (plc->message);
  290. #ifndef __GNUC__
  291. #pragma pack (push,1)
  292. #endif
  293. struct __packed vs_lnk_stats_request
  294. {
  295. struct ethernet_hdr ethernet;
  296. struct qualcomm_hdr qualcomm;
  297. uint8_t MCONTROL;
  298. uint8_t DIRECTION;
  299. uint8_t LID;
  300. uint8_t MACADDRESS [ETHER_ADDR_LEN];
  301. }
  302. * request = (struct vs_lnk_stats_request *) (message);
  303. struct __packed vs_lnk_stats_confirm
  304. {
  305. struct ethernet_hdr ethernet;
  306. struct qualcomm_hdr qualcomm;
  307. uint8_t MSTATUS;
  308. uint8_t DIRECTION;
  309. uint8_t LID;
  310. uint8_t TEI;
  311. uint8_t LSTATS [1];
  312. }
  313. * confirm = (struct vs_lnk_stats_confirm *) (message);
  314. #ifndef __GNUC__
  315. #pragma pack (pop)
  316. #endif
  317. memset (message, 0, sizeof (* message));
  318. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  319. QualcommHeader (& request->qualcomm, 0, (VS_LNK_STATS | MMTYPE_REQ));
  320. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  321. request->MCONTROL = plc->pushbutton;
  322. request->DIRECTION = plc->module;
  323. request->LID = plc->action;
  324. memcpy (request->MACADDRESS, plc->RDA, sizeof (request->MACADDRESS));
  325. if (SendMME (plc) <= 0)
  326. {
  327. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  328. return (-1);
  329. }
  330. if (ReadMME (plc, 0, (VS_LNK_STATS | MMTYPE_CNF)) <= 0)
  331. {
  332. error (PLC_EXIT (plc), errno, CHANNEL_CANTREAD);
  333. return (-1);
  334. }
  335. if (confirm->MSTATUS)
  336. {
  337. Failure (plc, PLC_WONTDOIT);
  338. return (-1);
  339. }
  340. if (confirm->DIRECTION == 0)
  341. {
  342. printf (" DIR");
  343. printf (" ----------- PBs PASS");
  344. printf (" ----------- PBs FAIL");
  345. printf (" PBs ERR");
  346. printf (" ---------- MPDU ACKD");
  347. printf (" ---------- MPDU FAIL");
  348. printf ("\n");
  349. thunderbolt_transmit_statistics ((struct thunderbolt_transmit *) (confirm->LSTATS));
  350. printf ("\n");
  351. }
  352. if (confirm->DIRECTION == 1)
  353. {
  354. printf (" DIR");
  355. printf (" ----------- PBs PASS");
  356. printf (" ----------- PBs FAIL");
  357. printf (" PBs ERR");
  358. printf (" ---------- MPDU ACKD");
  359. printf (" ---------- MPDU FAIL");
  360. printf ("\n");
  361. thunderbolt_receive_statistics ((struct thunderbolt_receive *) (confirm->LSTATS));
  362. printf ("\n");
  363. printf (" PHY");
  364. printf (" ----------- PBs PASS");
  365. printf (" ----------- PBs FAIL");
  366. printf (" PBs ERR");
  367. printf (" ----------- BER PASS");
  368. printf (" ----------- BER FAIL");
  369. printf (" BER ERR");
  370. printf ("\n");
  371. thunderbolt_receive_interval ((struct thunderbolt_receive *) (confirm->LSTATS));
  372. printf ("\n");
  373. }
  374. if (confirm->DIRECTION == 2)
  375. {
  376. printf (" DIR");
  377. printf (" ----------- PBs PASS");
  378. printf (" ----------- PBs FAIL");
  379. printf (" PBs ERR");
  380. printf (" ---------- MPDU ACKD");
  381. printf (" ---------- MPDU FAIL");
  382. printf ("\n");
  383. thunderbolt_transmit_statistics ((struct thunderbolt_transmit *) (confirm->LSTATS));
  384. thunderbolt_receive_statistics ((struct thunderbolt_receive *) (confirm->LSTATS + sizeof (struct thunderbolt_transmit)));
  385. printf ("\n");
  386. printf (" PHY");
  387. printf (" ----------- PBs PASS");
  388. printf (" ----------- PBs FAIL");
  389. printf (" PBs ERR");
  390. printf (" ----------- BER PASS");
  391. printf (" ----------- BER FAIL");
  392. printf (" BER ERR");
  393. printf ("\n");
  394. thunderbolt_receive_interval ((struct thunderbolt_receive *) (confirm->LSTATS + sizeof (struct thunderbolt_transmit)));
  395. printf ("\n");
  396. }
  397. return (0);
  398. }
  399. /*====================================================================*
  400. *
  401. * void manager (struct plc * plc);
  402. *
  403. * perform operations in logical order despite any order specfied
  404. * on the command line; for example read PIB before writing PIB;
  405. *
  406. * operation order is controlled by the order of "if" statements
  407. * shown here; the entire operation sequence can be repeated with
  408. * an optional pause between each iteration;
  409. *
  410. *--------------------------------------------------------------------*/
  411. void manager (struct plc * plc, signed count, signed pause)
  412. {
  413. while (count--)
  414. {
  415. if (_anyset (plc->flags, PLC_ANALYSE))
  416. {
  417. Topology1 (plc);
  418. }
  419. if (_anyset (plc->flags, PLC_NETWORK))
  420. {
  421. NetworkInformation1 (plc);
  422. }
  423. if (_anyset (plc->flags, PLC_LINK_STATS))
  424. {
  425. thunderbolt_link_statistics (plc);
  426. }
  427. sleep (pause);
  428. }
  429. return;
  430. }
  431. /*====================================================================*
  432. *
  433. * int main (int argc, char const * argv[]);
  434. *
  435. * parse command line, populate plc structure and perform selected
  436. * operations; show help summary if asked; see getoptv and putoptv
  437. * to understand command line parsing and help summary display; see
  438. * plc.h for the definition of struct plc;
  439. *
  440. * the command line accepts multiple MAC addresses and the program
  441. * performs the specified operations on each address, in turn; the
  442. * address order is significant but the option order is not; the
  443. * default address is a local broadcast that causes all devices on
  444. * the local H1 interface to respond but not those at the remote
  445. * end of the powerline;
  446. *
  447. * the default address is 00:B0:52:00:00:01; omitting the address
  448. * will automatically address the local device; some options will
  449. * cancel themselves if this makes no sense;
  450. *
  451. * the default interface is eth1 because most people use eth0 as
  452. * their principle network connection; you can specify another
  453. * interface with -i or define environment string PLC to make
  454. * that the default interface and save typing;
  455. *
  456. *--------------------------------------------------------------------*/
  457. int main (int argc, char const * argv [])
  458. {
  459. extern struct channel channel;
  460. static char const * optv [] =
  461. {
  462. "Cd:ei:l:mp:qs:tvw:",
  463. "device [device] [...] [> stdout]",
  464. "Qualcomm Atheros INT6x00 Powerline Link Statistics",
  465. #if defined (WINPCAP) || defined (LIBPCAP)
  466. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  467. #else
  468. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  469. #endif
  470. "C\tclear statistics without reading using VS_LNK_STATS",
  471. "d n\tdirection (0=tx, 1=rx, 2=both) for VS_LNK_STATS",
  472. "e\tredirect stderr to stdout",
  473. "l n\tloop n times [" LITERAL (INT6KSTAT_LOOP) "]",
  474. "s n\tLink ID for VS_LNK_STATS",
  475. "m\tprint network membership information using VS_NW_INFO",
  476. "p x\tpeer node address for options -s",
  477. "q\tquiet mode",
  478. "t\tprint network topology using VS_NW_INFO with VS_SW_VER",
  479. "v\tverbose mode",
  480. "w n\twait n seconds [" LITERAL (INT6KSTAT_WAIT) "]",
  481. (char const *) (0)
  482. };
  483. #include "../plc/plc.c"
  484. signed loop = INT6KSTAT_LOOP;
  485. signed wait = INT6KSTAT_WAIT;
  486. signed c;
  487. if (getenv (PLCDEVICE))
  488. {
  489. #if defined (WINPCAP) || defined (LIBPCAP)
  490. channel.ifindex = atoi (getenv (PLCDEVICE));
  491. #else
  492. channel.ifname = strdup (getenv (PLCDEVICE));
  493. #endif
  494. }
  495. optind = 1;
  496. plc.pushbutton = 0;
  497. while (~ (c = getoptv (argc, argv, optv)))
  498. {
  499. switch (c)
  500. {
  501. case 'C':
  502. _setbits (plc.flags, PLC_LINK_STATS);
  503. plc.pushbutton = 1;
  504. break;
  505. case 'd':
  506. _setbits (plc.flags, PLC_LINK_STATS);
  507. plc.module = (uint8_t) (uintspec (synonym (optarg, directions, SIZEOF (directions)), 0, UCHAR_MAX));
  508. break;
  509. case 'e':
  510. dup2 (STDOUT_FILENO, STDERR_FILENO);
  511. break;
  512. case 'i':
  513. #if defined (WINPCAP) || defined (LIBPCAP)
  514. channel.ifindex = atoi (optarg);
  515. #else
  516. channel.ifname = optarg;
  517. #endif
  518. break;
  519. case 'm':
  520. _setbits (plc.flags, PLC_NETWORK);
  521. break;
  522. case 'p':
  523. _setbits (plc.flags, PLC_LINK_STATS);
  524. if (! hexencode (plc.RDA, sizeof (plc.RDA), (char const *) (optarg)))
  525. {
  526. error (1, errno, PLC_BAD_MAC, optarg);
  527. }
  528. break;
  529. case 'l':
  530. loop = (unsigned) (uintspec (optarg, 0, UINT_MAX));
  531. break;
  532. case 'q':
  533. _setbits (channel.flags, CHANNEL_SILENCE);
  534. _setbits (plc.flags, PLC_SILENCE);
  535. break;
  536. case 's':
  537. _setbits (plc.flags, PLC_LINK_STATS);
  538. plc.action = (uint8_t) (uintspec (synonym (optarg, linkids, SIZEOF (linkids)), 0, UCHAR_MAX));
  539. break;
  540. case 't':
  541. _setbits (plc.flags, PLC_ANALYSE);
  542. break;
  543. case 'v':
  544. _setbits (channel.flags, CHANNEL_VERBOSE);
  545. _setbits (plc.flags, PLC_VERBOSE);
  546. break;
  547. case 'w':
  548. wait = (unsigned) (uintspec (optarg, 0, 3600));
  549. break;
  550. default:
  551. break;
  552. }
  553. }
  554. argc -= optind;
  555. argv += optind;
  556. openchannel (& channel);
  557. if (! (plc.message = malloc (sizeof (* plc.message))))
  558. {
  559. error (1, errno, PLC_NOMEMORY);
  560. }
  561. if (! argc)
  562. {
  563. manager (& plc, loop, wait);
  564. }
  565. while ((argc) && (* argv))
  566. {
  567. if (! hexencode (channel.peer, sizeof (channel.peer), synonym (* argv, devices, SIZEOF (devices))))
  568. {
  569. error (1, errno, PLC_BAD_MAC, * argv);
  570. }
  571. manager (& plc, loop, wait);
  572. argc--;
  573. argv++;
  574. }
  575. free (plc.message);
  576. closechannel (& channel);
  577. return (0);
  578. }