chan_modem_bestdata.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 1999, Mark Spencer and 2001 Jim Dixon
  5. *
  6. * Mark Spencer <markster@linux-support.net>
  7. * Jim Dixon <jim@lambdatel.com>
  8. *
  9. * See http://www.asterisk.org for more information about
  10. * the Asterisk project. Please do not directly contact
  11. * any of the maintainers of this project for assistance;
  12. * the project provides a web site, mailing lists and IRC
  13. * channels for your use.
  14. *
  15. * This program is free software, distributed under the terms of
  16. * the GNU General Public License Version 2. See the LICENSE file
  17. * at the top of the source tree.
  18. */
  19. /*
  20. *
  21. * BestData 56SX-92 Voice Modem Driver (Conexant)
  22. *
  23. * \ingroup channel_drivers
  24. */
  25. #include <stdio.h>
  26. #include <string.h>
  27. #include <stdlib.h>
  28. #include <errno.h>
  29. #include <unistd.h>
  30. #include "asterisk.h"
  31. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  32. #include "asterisk/lock.h"
  33. #include "asterisk/vmodem.h"
  34. #include "asterisk/module.h"
  35. #include "asterisk/frame.h"
  36. #include "asterisk/logger.h"
  37. #include "asterisk/options.h"
  38. #define STATE_COMMAND 0
  39. #define STATE_VOICE 1
  40. #define STATE_VOICEPLAY 2
  41. #define VRA "40" /* Number of 100ms of non-ring after a ring cadence after which we consider the lien to be answered */
  42. #define VRN "25" /* Number of 100ms of non-ring with no cadence after which we assume an answer */
  43. #define RINGT 7000
  44. static char *breakcmd = "\020!";
  45. static char *desc = "BestData (Conexant V.90 Chipset) VoiceModem Driver";
  46. static int usecnt;
  47. AST_MUTEX_DEFINE_STATIC(usecnt_lock);
  48. static char *bestdata_idents[] = {
  49. /* Identify BestData Modem */
  50. "ACF3_V1.010-V90_P21_FSH",
  51. NULL
  52. };
  53. static int bestdata_break(struct ast_modem_pvt *p);
  54. static int bestdata_startrec(struct ast_modem_pvt *p)
  55. {
  56. if (p->ministate != STATE_COMMAND) bestdata_break(p);
  57. if (ast_modem_send(p, "AT+VRX", 0) ||
  58. ast_modem_expect(p, "CONNECT", 5)) {
  59. ast_log(LOG_WARNING, "Unable to start recording\n");
  60. return -1;
  61. }
  62. p->ministate = STATE_VOICE;
  63. return 0;
  64. }
  65. static int bestdata_startplay(struct ast_modem_pvt *p)
  66. {
  67. if (p->ministate != STATE_COMMAND) bestdata_break(p);
  68. if (ast_modem_send(p, "AT+VTX", 0) ||
  69. ast_modem_expect(p, "CONNECT", 5)) {
  70. ast_log(LOG_WARNING, "Unable to start recording\n");
  71. return -1;
  72. }
  73. p->ministate = STATE_VOICEPLAY;
  74. return 0;
  75. }
  76. static int bestdata_break(struct ast_modem_pvt *p)
  77. {
  78. if (ast_modem_send(p, breakcmd, 2)) {
  79. ast_log(LOG_WARNING, "Failed to break\n");
  80. return -1;
  81. }
  82. p->ministate = STATE_COMMAND;
  83. usleep(10000);
  84. /* Read any outstanding junk */
  85. while(!ast_modem_read_response(p, 1));
  86. if (ast_modem_send(p, "AT", 0)) {
  87. /* Modem might be stuck in some weird mode, try to get it out */
  88. ast_modem_send(p, "+++", 3);
  89. if (ast_modem_expect(p, "OK", 10)) {
  90. ast_log(LOG_WARNING, "Modem is not responding\n");
  91. return -1;
  92. }
  93. if (ast_modem_send(p, "AT", 0)) {
  94. ast_log(LOG_WARNING, "Modem is not responding\n");
  95. return -1;
  96. }
  97. }
  98. if (ast_modem_expect(p, "OK", 5)) {
  99. ast_log(LOG_WARNING, "Modem did not respond properly\n");
  100. return -1;
  101. }
  102. return 0;
  103. }
  104. static int bestdata_init(struct ast_modem_pvt *p)
  105. {
  106. if (option_debug)
  107. ast_log(LOG_DEBUG, "bestdata_init()\n");
  108. if (bestdata_break(p))
  109. return -1;
  110. /* Force into command mode */
  111. p->ministate = STATE_COMMAND;
  112. if (ast_modem_send(p, "AT+FCLASS=8", 0) ||
  113. ast_modem_expect(p, "OK", 5)) {
  114. ast_log(LOG_WARNING, "Unable to set to voice mode\n");
  115. return -1;
  116. }
  117. if (ast_modem_send(p, "AT+VSM=1,8000,0,0", 0) ||
  118. ast_modem_expect(p, "OK", 5)) {
  119. ast_log(LOG_WARNING, "Unable to set to 8000 Hz sampling\n");
  120. return -1;
  121. }
  122. if (ast_modem_send(p, "AT+VLS=0", 0) ||
  123. ast_modem_expect(p, "OK", 5)) {
  124. ast_log(LOG_WARNING, "Unable to set to telco interface\n");
  125. return -1;
  126. }
  127. if (ast_modem_send(p, "AT+VRA=" VRA, 0) ||
  128. ast_modem_expect(p, "OK", 5)) {
  129. ast_log(LOG_WARNING, "Unable to set to 'ringback goes away' timer\n");
  130. return -1;
  131. }
  132. if (ast_modem_send(p, "AT+VRN=" VRN, 0) ||
  133. ast_modem_expect(p, "OK", 5)) {
  134. ast_log(LOG_WARNING, "Unable to set to 'ringback never came timer'\n");
  135. return -1;
  136. }
  137. if (ast_modem_send(p, "AT+VTD=63", 0) ||
  138. ast_modem_expect(p, "OK", 5)) {
  139. ast_log(LOG_WARNING, "Unable to set to tone detection\n");
  140. return -1;
  141. }
  142. if (ast_modem_send(p, "AT+VCID=1", 0) ||
  143. ast_modem_expect(p, "OK", 5)) {
  144. ast_log(LOG_WARNING, "Unable to enable Caller*ID\n");
  145. return -1;
  146. }
  147. return 0;
  148. }
  149. static struct ast_frame *bestdata_handle_escape(struct ast_modem_pvt *p, char esc)
  150. {
  151. char name[30]="",nmbr[30]="";
  152. time_t now;
  153. /* Handle escaped characters -- but sometimes we call it directly as
  154. a quick way to cause known responses */
  155. p->fr.frametype = AST_FRAME_NULL;
  156. p->fr.subclass = 0;
  157. p->fr.data = NULL;
  158. p->fr.datalen = 0;
  159. p->fr.samples = 0;
  160. p->fr.offset = 0;
  161. p->fr.mallocd = 0;
  162. p->fr.delivery.tv_sec = 0;
  163. p->fr.delivery.tv_usec = 0;
  164. if (esc)
  165. ast_log(LOG_DEBUG, "Escaped character '%c'\n", esc);
  166. switch(esc) {
  167. case 'R': /* Pseudo ring */
  168. time(&now);
  169. if (now > (p->lastring + (RINGT / 1000)))
  170. { /* if stale, treat as new */
  171. p->gotclid = 0;
  172. }
  173. if (p->gotclid)
  174. {
  175. p->fr.frametype = AST_FRAME_CONTROL;
  176. p->fr.subclass = AST_CONTROL_RING;
  177. }
  178. p->ringt = RINGT;
  179. time(&p->lastring);
  180. return &p->fr;
  181. case 'X': /* Caller-ID Spill */
  182. if (p->gotclid) return &p->fr;
  183. name[0] = nmbr[0] = 0;
  184. for(;;)
  185. {
  186. char res[1000]="";
  187. if (ast_modem_read_response(p, 5)) break;
  188. strncpy(res, p->response, sizeof(res)-1);
  189. ast_modem_trim(res);
  190. if (!strncmp(res,"\020.",2)) break;
  191. if (!strncmp(res,"NAME",4)) strncpy(name,res + 7, sizeof(name) - 1);
  192. if (!strncmp(res,"NMBR",4)) strncpy(nmbr,res + 7, sizeof(nmbr) - 1);
  193. }
  194. p->gotclid = 1;
  195. if ((!strcmp(name,"O")) || (!strcmp(name,"P"))) name[0] = 0;
  196. if ((!strcmp(nmbr,"O")) || (!strcmp(nmbr,"P"))) nmbr[0] = 0;
  197. if (name[0])
  198. strncpy(p->cid_name, name, sizeof(p->cid_name) - 1);
  199. if (nmbr[0])
  200. strncpy(p->cid_num, nmbr, sizeof(p->cid_num) - 1);
  201. if (p->owner) {
  202. p->owner->cid.cid_num = strdup(p->cid_num);
  203. p->owner->cid.cid_name = strdup(p->cid_name);
  204. }
  205. return &p->fr;
  206. case '@': /* response from "OK" in command mode */
  207. if (p->owner)
  208. ast_setstate(p->owner, AST_STATE_UP);
  209. if (bestdata_startrec(p)) return NULL;
  210. p->fr.frametype = AST_FRAME_CONTROL;
  211. p->fr.subclass = AST_CONTROL_RING;
  212. return &p->fr;
  213. case 'b': /* Busy signal */
  214. p->fr.frametype = AST_FRAME_CONTROL;
  215. p->fr.subclass = AST_CONTROL_BUSY;
  216. return &p->fr;
  217. case 'o': /* Overrun */
  218. ast_log(LOG_WARNING, "Overflow on modem, flushing buffers\n");
  219. if (ast_modem_send(p, "\0x10E", 2))
  220. ast_log(LOG_WARNING, "Unable to flush buffers\n");
  221. return &p->fr;
  222. case '0': /* All the DTMF characters */
  223. case '1':
  224. case '2':
  225. case '3':
  226. case '4':
  227. case '5':
  228. case '6':
  229. case '7':
  230. case '8':
  231. case '9':
  232. case '*':
  233. case '#':
  234. case 'A':
  235. case 'B':
  236. case 'C':
  237. case 'D':
  238. p->dtmfrx = esc; /* save this for when its done */
  239. return &p->fr;
  240. case '/': /* Start of DTMF tone shielding */
  241. p->dtmfrx = ' ';
  242. return &p->fr;
  243. case '~': /* DTMF transition to off */
  244. if (p->dtmfrx > ' ')
  245. {
  246. p->fr.frametype = AST_FRAME_DTMF;
  247. p->fr.subclass = p->dtmfrx;
  248. }
  249. p->dtmfrx = 0;
  250. return &p->fr;
  251. case 'u': /* Underrun */
  252. ast_log(LOG_WARNING, "Data underrun\n");
  253. /* Fall Through */
  254. case CHAR_ETX: /* End Transmission */
  255. case 'd': /* Dialtone */
  256. case 'c': /* Calling Tone */
  257. case 'e': /* European version */
  258. case 'a': /* Answer Tone */
  259. case 'f': /* Bell Answer Tone */
  260. case 'T': /* Timing mark */
  261. case 't': /* Handset off hook */
  262. case 'h': /* Handset hungup */
  263. case 0: /* Pseudo signal */
  264. /* Ignore */
  265. return &p->fr;
  266. default:
  267. ast_log(LOG_DEBUG, "Unknown Escaped character '%c' (%d)\n", esc, esc);
  268. }
  269. return &p->fr;
  270. }
  271. static struct ast_frame *bestdata_read(struct ast_modem_pvt *p)
  272. {
  273. char result[256];
  274. short *b;
  275. struct ast_frame *f=NULL;
  276. int res;
  277. int x;
  278. if (p->ministate == STATE_COMMAND) {
  279. /* Read the first two bytes, first, in case it's a control message */
  280. fread(result, 1, 2, p->f);
  281. if (result[0] == CHAR_DLE) {
  282. return bestdata_handle_escape(p, result[1]);
  283. } else {
  284. if (p->ringt) /* if ring timeout specified */
  285. {
  286. x = fileno(p->f);
  287. res = ast_waitfor_n_fd(&x, 1, &p->ringt, NULL);
  288. if (res < 0) {
  289. return NULL;
  290. }
  291. }
  292. if ((result[0] == '\n') || (result[0] == '\r'))
  293. return bestdata_handle_escape(p, 0);
  294. /* Read the rest of the line */
  295. fgets(result + 2, sizeof(result) - 2, p->f);
  296. ast_modem_trim(result);
  297. if (!strcasecmp(result, "OK")) {
  298. /* If we're in immediate mode, reply now */
  299. if (p->mode == MODEM_MODE_IMMEDIATE)
  300. return bestdata_handle_escape(p, '@');
  301. } else
  302. if (!strcasecmp(result, "BUSY")) {
  303. /* Same as a busy signal */
  304. return bestdata_handle_escape(p, 'b');
  305. } else
  306. if (!strcasecmp(result, "RING")) {
  307. return bestdata_handle_escape(p, 'R');
  308. } else
  309. if (!strcasecmp(result, "NO DIALTONE")) {
  310. /* There's no dialtone, so the line isn't working */
  311. ast_log(LOG_WARNING, "Device '%s' lacking dialtone\n", p->dev);
  312. return NULL;
  313. }
  314. ast_log(LOG_DEBUG, "Modem said '%s'\n", result);
  315. return bestdata_handle_escape(p, 0);
  316. }
  317. } else {
  318. /* if playing, start recording instead */
  319. if (p->ministate == STATE_VOICEPLAY)
  320. {
  321. if (bestdata_startrec(p)) return NULL;
  322. }
  323. /* We have to be more efficient in voice mode */
  324. b = (short *)(p->obuf + p->obuflen);
  325. while (p->obuflen/2 < 240) {
  326. /* Read ahead the full amount */
  327. res = fread(result, 1, 240 - p->obuflen/2, p->f);
  328. if (res < 1) {
  329. /* If there's nothing there, just continue on */
  330. if (errno == EAGAIN)
  331. return bestdata_handle_escape(p, 0);
  332. ast_log(LOG_WARNING, "Read failed: %s\n", strerror(errno));
  333. }
  334. for (x=0;x<res;x++) {
  335. /* Process all the bytes that we've read */
  336. if (result[x] == CHAR_DLE) {
  337. /* We assume there is no more than one signal frame among our
  338. data. */
  339. if (f) ast_log(LOG_WARNING, "Warning: Dropped a signal frame\n");
  340. /* if not a DLE in the data */
  341. if (result[++x] != CHAR_DLE)
  342. {
  343. /* If bestdata_handle_escape says NULL, say it now, doesn't matter
  344. what else is there, the connection is dead. */
  345. f = bestdata_handle_escape(p, result[x]);
  346. if (p->dtmfrx) continue;
  347. return(f);
  348. }
  349. }
  350. /* Generate a 16-bit signed linear value from our
  351. unsigned 8-bit value */
  352. *(b++) = (((short)result[x]) - 127) * 0xff;
  353. p->obuflen += 2;
  354. }
  355. if (f) break;
  356. }
  357. /* If we have a control frame, return it now */
  358. if (f) return f;
  359. /* If we get here, we have a complete voice frame */
  360. p->fr.frametype = AST_FRAME_VOICE;
  361. p->fr.subclass = AST_FORMAT_SLINEAR;
  362. p->fr.samples = 240;
  363. p->fr.data = p->obuf;
  364. p->fr.datalen = p->obuflen;
  365. p->fr.mallocd = 0;
  366. p->fr.delivery.tv_sec = 0;
  367. p->fr.delivery.tv_usec = 0;
  368. p->fr.offset = AST_FRIENDLY_OFFSET;
  369. p->fr.src = __FUNCTION__;
  370. if (option_debug)
  371. ast_log(LOG_DEBUG, "bestdata_read(voice frame)\n");
  372. p->obuflen = 0;
  373. return &p->fr;
  374. }
  375. return NULL;
  376. }
  377. static int bestdata_write(struct ast_modem_pvt *p, struct ast_frame *f)
  378. {
  379. unsigned char c,buf[32768]; /* I hope we dont have frames larger then 16K */
  380. int i,j;
  381. short *sp;
  382. unsigned long u;
  383. #define DLE 16
  384. if (p->owner && (p->owner->_state == AST_STATE_UP) &&
  385. (p->ministate != STATE_VOICEPLAY) && bestdata_startplay(p)) return -1;
  386. sp = (short *) f->data;
  387. /* stick DLE's in ahead of anything else */
  388. for(i = 0,j = 0; i < f->datalen / 2; i++)
  389. {
  390. *sp *= 3;
  391. u = *sp++ + 32768;
  392. c = u >> 8;
  393. if (c == DLE) buf[j++] = DLE;
  394. buf[j++] = c;
  395. }
  396. do i = fwrite(buf,1,j,p->f);
  397. while ((i == -1) && (errno == EWOULDBLOCK));
  398. if (i != j)
  399. {
  400. ast_log(LOG_WARNING,"modem short write!!\n");
  401. return -1;
  402. }
  403. fflush(p->f);
  404. if (option_debug)
  405. ast_log(LOG_DEBUG, "bestdata_write()\n");
  406. return 0;
  407. }
  408. static char *bestdata_identify(struct ast_modem_pvt *p)
  409. {
  410. char identity[256];
  411. char mfr[80];
  412. char mdl[80];
  413. char rev[80];
  414. ast_modem_send(p, "AT+FMM", 0);
  415. ast_modem_read_response(p, 5);
  416. strncpy(mdl, p->response, sizeof(mdl)-1);
  417. ast_modem_trim(mdl);
  418. ast_modem_expect(p, "OK", 5);
  419. ast_modem_send(p, "AT+FMI", 0);
  420. ast_modem_read_response(p, 5);
  421. strncpy(mfr, p->response, sizeof(mfr)-1);
  422. ast_modem_trim(mfr);
  423. ast_modem_expect(p, "OK", 5);
  424. ast_modem_send(p, "AT+FMR", 0);
  425. ast_modem_read_response(p, 5);
  426. strncpy(rev, p->response, sizeof(rev)-1);
  427. ast_modem_trim(rev);
  428. ast_modem_expect(p, "OK", 5);
  429. snprintf(identity, sizeof(identity), "%s Model %s Revision %s", mfr, mdl, rev);
  430. return strdup(identity);
  431. }
  432. static void bestdata_incusecnt(void)
  433. {
  434. ast_mutex_lock(&usecnt_lock);
  435. usecnt++;
  436. ast_mutex_unlock(&usecnt_lock);
  437. ast_update_use_count();
  438. }
  439. static void bestdata_decusecnt(void)
  440. {
  441. ast_mutex_lock(&usecnt_lock);
  442. usecnt++;
  443. ast_mutex_unlock(&usecnt_lock);
  444. ast_update_use_count();
  445. }
  446. static int bestdata_answer(struct ast_modem_pvt *p)
  447. {
  448. p->ringt = 0;
  449. p->lastring = 0;
  450. if (ast_modem_send(p, "AT+VLS=1", 0) ||
  451. ast_modem_expect(p, "OK", 10)) {
  452. ast_log(LOG_WARNING, "Unable to answer: %s", p->response);
  453. return -1;
  454. }
  455. return 0;
  456. }
  457. static int bestdata_dialdigit(struct ast_modem_pvt *p, char digit)
  458. {
  459. char cmd[80];
  460. if (p->ministate != STATE_COMMAND) bestdata_break(p);
  461. snprintf(cmd, sizeof(cmd), "AT+VTS=%c", digit);
  462. if (ast_modem_send(p, cmd, 0) ||
  463. ast_modem_expect(p, "OK", 10)) {
  464. ast_log(LOG_WARNING, "Unable to answer: %s", p->response);
  465. return -1;
  466. }
  467. return 0;
  468. }
  469. static int bestdata_dial(struct ast_modem_pvt *p, char *stuff)
  470. {
  471. char cmd[800] = "",a[20]="";
  472. int i,j;
  473. if (p->ministate != STATE_COMMAND)
  474. {
  475. bestdata_break(p);
  476. strncpy(cmd, "AT+VTS=", sizeof(cmd) - 1);
  477. j = strlen(cmd);
  478. for(i = 0; stuff[i]; i++)
  479. {
  480. switch(stuff[i])
  481. {
  482. case '!' :
  483. a[0] = stuff[i];
  484. a[1] = 0;
  485. break;
  486. case ',':
  487. strncpy(a, "[,,100]", sizeof(a) - 1);
  488. break;
  489. default:
  490. snprintf(a, sizeof(a), "{%c,7}", stuff[i]);
  491. }
  492. if (stuff[i + 1]) strncat(a, ",", sizeof(a) - strlen(a) - 1);
  493. strncpy(cmd + j, a, sizeof(cmd) - j - 1);
  494. j += strlen(a);
  495. }
  496. }
  497. else
  498. {
  499. snprintf(cmd, sizeof(cmd), "ATD%c %s", p->dialtype,stuff);
  500. }
  501. if (ast_modem_send(p, cmd, 0)) {
  502. ast_log(LOG_WARNING, "Unable to dial\n");
  503. return -1;
  504. }
  505. return 0;
  506. }
  507. static int bestdata_hangup(struct ast_modem_pvt *p)
  508. {
  509. if (bestdata_break(p))
  510. return -1;
  511. /* Hangup by switching to data, then back to voice */
  512. if (ast_modem_send(p, "ATH", 0) ||
  513. ast_modem_expect(p, "OK", 8)) {
  514. ast_log(LOG_WARNING, "Unable to set to data mode\n");
  515. return -1;
  516. }
  517. if (ast_modem_send(p, "AT+FCLASS=8", 0) ||
  518. ast_modem_expect(p, "OK", 5)) {
  519. ast_log(LOG_WARNING, "Unable to set to voice mode\n");
  520. return -1;
  521. }
  522. p->gotclid = 0;
  523. p->ringt = 0;
  524. p->lastring = 0;
  525. p->dtmfrx = 0;
  526. return 0;
  527. }
  528. static struct ast_modem_driver bestdata_driver =
  529. {
  530. "BestData",
  531. bestdata_idents,
  532. AST_FORMAT_SLINEAR,
  533. 0, /* Not full duplex */
  534. bestdata_incusecnt, /* incusecnt */
  535. bestdata_decusecnt, /* decusecnt */
  536. bestdata_identify, /* identify */
  537. bestdata_init, /* init */
  538. NULL, /* setdev */
  539. bestdata_read,
  540. bestdata_write,
  541. bestdata_dial, /* dial */
  542. bestdata_answer, /* answer */
  543. bestdata_hangup, /* hangup */
  544. bestdata_startrec, /* start record */
  545. NULL, /* stop record */
  546. bestdata_startplay, /* start playback */
  547. NULL, /* stop playback */
  548. NULL, /* set silence supression */
  549. bestdata_dialdigit, /* dialdigit */
  550. };
  551. int usecount(void)
  552. {
  553. return usecnt;
  554. }
  555. int load_module(void)
  556. {
  557. return ast_register_modem_driver(&bestdata_driver);
  558. }
  559. int unload_module(void)
  560. {
  561. return ast_unregister_modem_driver(&bestdata_driver);
  562. }
  563. char *description()
  564. {
  565. return desc;
  566. }
  567. char *key()
  568. {
  569. return ASTERISK_GPL_KEY;
  570. }