|
version 1.3.2.2, 2011/05/29 22:48:23
|
version 1.5, 2012/07/22 22:37:08
|
|
Line 12 terms:
|
Line 12 terms:
|
| All of the documentation and software included in the ELWIX and AITNET |
All of the documentation and software included in the ELWIX and AITNET |
| Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
| |
|
| Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 | Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 |
| by Michael Pounov <misho@elwix.org>. All rights reserved. |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
| |
|
| Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
|
Line 51 SUCH DAMAGE.
|
Line 51 SUCH DAMAGE.
|
| #include <sys/queue.h> |
#include <sys/queue.h> |
| |
|
| |
|
| |
#ifndef STRSIZ |
| #define STRSIZ 256 |
#define STRSIZ 256 |
| |
#endif |
| |
|
| /* Key definitions */ |
/* Key definitions */ |
| |
|
|
Line 346 inline int cli_telnet_SetCmd(struct telnetAttrs *attr,
|
Line 348 inline int cli_telnet_SetCmd(struct telnetAttrs *attr,
|
| * @nCaps = number of capability options |
* @nCaps = number of capability options |
| * @attr = input attribute |
* @attr = input attribute |
| * @nAttr = number of input attributes |
* @nAttr = number of input attributes |
| * @ans = output answered attributes, must be free() after use | * @ans = output answered attributes, must be io_free() after use |
| * @Ans = number of output answered attributes |
* @Ans = number of output answered attributes |
| * return: -1 can`t answer; !=-1 ok |
* return: -1 can`t answer; !=-1 ok |
| */ |
*/ |
|
Line 503 int cliInitLine(linebuffer_t * __restrict buffer);
|
Line 505 int cliInitLine(linebuffer_t * __restrict buffer);
|
| /* |
/* |
| * cliReadLine() Read line from opened CLI session |
* cliReadLine() Read line from opened CLI session |
| * @buffer = CLI buffer |
* @buffer = CLI buffer |
| * return: NULL if error or !=NULL readed line, must be free after use! | * return: NULL if error or !=NULL readed line, must be io_free after use! |
| */ |
*/ |
| char *cliReadLine(linebuffer_t * __restrict buffer); |
char *cliReadLine(linebuffer_t * __restrict buffer); |
| |
|