1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
|
/*
* $Id: pilot-dlpsh.c,v 1.92 2007/02/02 11:35:44 desrod Exp $
*
* pilot-dlpsh.c: DLP Command Shell
*
* (c) 1996, 2000, The pilot-link Team
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <sys/time.h>
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include <netinet/in.h>
#include <setjmp.h>
#include "pi-source.h"
#include "pi-dlp.h"
#include "pi-header.h"
#include "pi-error.h"
#include "pi-userland.h"
#ifdef HAVE_LIBREADLINE
#include <readline/readline.h>
#include <readline/history.h>
#endif
#define TICKLE_INTERVAL 7
struct pi_socket *ticklish_pi_socket;
/* FIXME: This isn't really ideal, passing a struct in is
probably better. Something like this:
typedef struct { int sd; int argc; char **argv; } cmd_struct_t;
int df_fn(cmd_struct_t *cmd_struct);
int exit_fn(cmd_struct_t *cmd_struct);
int ls_fn(cmd_struct_t *cmd_struct);
int help_fn(cmd_struct_t *cmd_struct);
int rm_fn(cmd_struct_t *cmd_struct);
int time_fn(cmd_struct_t *cmd_struct);
int user_fn(cmd_struct_t *cmd_struct);
typedef int (*cmd_func_t)(cmd_struct_t *);
struct Command {
char *name;
cmd_func_t func;
};
Knghtbrd: In the meantime, let's fix the warnings...
*/
int df_fn(int sd, int argc, const char *argv[]),
reopen_fn(int sd, int argc, const char *argv[]),
exit_fn(int sd, int argc, const char *argv[]),
ls_fn(int sd, int argc, const char *argv[]),
help_fn(int sd, int argc, const char *argv[]),
rm_fn(int sd, int argc, const char *argv[]),
time_fn(int sd, int argc, const char *argv[]),
user_fn(int sd, int argc, const char *argv[]);
char *strtoke(char *str, const char *ws, const char *delim),
*timestr(time_t t);
static jmp_buf main_jmp;
void exit_func(void);
void handle_user_commands(int sd);
typedef int (*cmd_fn_t) (int, int, const char **);
struct Command {
char *name;
cmd_fn_t func;
};
struct Command command_list[] = {
{"df", df_fn},
{"help", help_fn},
{"ls", ls_fn},
{"reopen", reopen_fn},
{"exit", exit_fn},
{"quit", exit_fn},
{"q", exit_fn},
{"bye", exit_fn},
{"rm", rm_fn},
{"del", rm_fn},
{"ntp", time_fn},
{"time", time_fn},
{"dtp", time_fn},
{"user", user_fn},
{"u", user_fn},
{NULL, NULL}
};
/***********************************************************************
*
* Function: df_fn
*
* Summary: Simple dump of CardInfo, which includes the RAM/ROM
* amounts free and used.
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
int df_fn(int sd, int argc, const char *argv[])
{
struct CardInfo Card;
Card.card = -1;
Card.more = 1;
while (Card.more) {
if (dlp_ReadStorageInfo(sd, Card.card + 1, &Card) < 0)
break;
printf("Filesystem 1k-blocks Used Available Used Total\n");
printf("Card0: ROM %9lu", Card.romSize);
printf(" n/a %9lu n/a %4luk\n",
Card.romSize, Card.romSize/1024);
printf("Card0: RAM %9lu", Card.ramSize);
printf(" %8lu %8lu %3ld%% %4luk\n",
(Card.ramSize - Card.ramFree), Card.ramFree,
((Card.ramSize - Card.ramFree) * 100) / Card.ramSize,
Card.ramSize/1024);
printf("Total (ROM + RAM) %8lu %8lu n/a n/a %5luk\n\n",
(Card.romSize + Card.ramSize), (Card.romSize + Card.ramSize)-Card.ramFree,
(Card.romSize + Card.ramSize)/1024);
}
return 0;
}
/***********************************************************************
*
* Function: help_fn
*
* Summary: Handle the parsing of -h inside 'dlpsh>'
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
int help_fn(int sd, int argc, const char *argv[])
{
printf("The current built-in commands are:\n\n");
printf(" user,u print the currently set User information\n");
printf(" ls used with -l and -r to provide long and ROM file lists\n");
printf(" df display how much RAM and ROM is free on your device\n");
printf(" ntp,time,dtp Desktop-to-Palm, set the time on the Palm from the desktop\n");
printf(" rm,del remove a file, delete it entirely from the Palm device\n");
printf(" help You Are Here\n");
printf(" quit,q, exit,bye exit the DLP Protocol Shell\n\n");
printf("Use '<command> -help' for more detailed syntax and other switches\n\n");
return 0;
}
/***********************************************************************
*
* Function: ls_fn
*
* Summary: Similar to unix ls, lists files with -l and -r
*
* Parameters: -l for long and -r for ram
*
* Returns: Nothing
*
***********************************************************************/
int ls_fn(int sd, int argc, const char *argv[])
{
poptContext po;
struct poptOption ls_options[] = {
{"long", 'l', POPT_ARG_NONE, NULL, 'l', "List all RAM databases using \"expanded\" format"},
{"rom", 'r', POPT_ARG_NONE, NULL, 'r', "List all ROM databases and applications"},
{"help", 'h', POPT_ARG_NONE, NULL, 'h', "Display this information"},
POPT_TABLEEND
} ;
int c, /* switch */
cardno,
flags,
ret,
start = 0,
lflag = 0,
rom_flag = 0,
i;
pi_buffer_t *buf;
optind = 0;
po = poptGetContext("dlpsh", argc, argv, ls_options, 0);
while ((c = poptGetNextOpt(po)) >= 0) {
switch (c) {
case 'r':
rom_flag = 1;
break;
case 'l':
lflag = 1;
break;
case 'h':
poptPrintHelp(po,stdout,0);
return 0;
}
}
if (c < -1)
{
/* an error occurred during option processing */
fprintf(stderr, "%s: %s\n",
poptBadOption(po, POPT_BADOPTION_NOALIAS),
poptStrerror(c));
return 1;
}
cardno = 0;
if (rom_flag == 0)
flags = 0x80; /* dlpReadDBListFlagRAM */
else
flags = 0x40; /* dlpReadDBListFlagROM */
buf = pi_buffer_new (32 * sizeof (struct DBInfo));
for (;;) {
struct DBInfo info;
long tag;
char *a = (char *)&tag;
/* The databases are numbered starting at 0. The first 12
are in ROM, and the rest are in RAM. The high two bits
of the flags byte control wheter you see the ROM entries,
RAM entries or both. start is the lowest index you want.
So, we start with 0, but usually we want to see ram
entries, so it will return database number 12. Then,
we'll ask for 13, etc, until we get the NotFound error
return. */
ret = dlp_ReadDBList(sd, cardno, flags | dlpDBListMultiple, start, buf);
if (ret == PI_ERR_DLP_PALMOS &&
pi_palmos_error(sd) == dlpErrNotFound)
break;
if (ret < 0) {
if (ret == PI_ERR_DLP_PALMOS)
printf("dlp_ReadDBList: PalmOS err 0x%04x\n", pi_palmos_error(sd));
else
printf("dlp_ReadDBList: err %d\n", ret);
pi_buffer_free (buf);
return -1;
}
for (i = 0; i < (buf->used / sizeof(struct DBInfo)); i++) {
memcpy (&info, buf->data + (i * sizeof(struct DBInfo)), sizeof (struct DBInfo));
printf("%s\n", info.name);
if (lflag == 1) {
tag = htonl(info.type);
printf(" More: 0x%x Flags: 0x%-4x Type: %.4s\n",
info.more, info.flags, (char *) &tag);
tag = htonl(info.creator);
printf(" Creator: %c%c%c%c Modification Number: %-4ld Version: %-2d\n",
a[0], a[1], a[2], a[3], info.modnum, info.version);
printf(" Created: %19s\n", timestr(info.createDate));
printf(" Backup : %19s\n", timestr(info.backupDate));
printf(" Modify : %19s\n\n", timestr(info.modifyDate));
}
if (info.index < start) {
/* avoid looping forever if we get confused */
printf("error: index backs up\n");
break;
}
}
if (info.index < start)
break;
start = info.index + 1;
}
pi_buffer_free (buf);
return 0;
}
/***********************************************************************
*
* Function: rm_fn
*
* Summary: Similar to unix rm, deletes a database from the Palm
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
int rm_fn(int sd, int argc, const char *argv[])
{
int cardno,
ret;
const char *name;
if (argc != 2) {
printf(" Delete a application or database from your Palm device\n\n"
" Usage: rm <dbname>\n"
" Please note that no extension is required on 'dbname'\n\n"
" Example: rm Address\n\n");
return (0);
}
name = argv[1];
cardno = 0;
if ((ret = dlp_DeleteDB(sd, cardno, name)) < 0) {
if (ret == PI_ERR_DLP_PALMOS && pi_palmos_error(sd) == dlpErrNotFound) {
printf("%s: not found\n", name);
return (0);
}
printf("%s: remove error %d\n", name, ret);
return (0);
}
printf("File %s successfully removed\n", name);
return 0;
}
/***********************************************************************
*
* Function: time_fn
*
* Summary: ntpdate-style function for setting Palm time from
* desktop clock
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
int time_fn(int sd, int argc, const char *argv[])
{
int s;
time_t ltime;
struct tm *tm_ptr;
struct timeval tv;
char timebuf[80];
time(<ime);
tm_ptr = localtime(<ime);
strftime(timebuf, 80, "Now setting Palm time from desktop to: "
"%a %b %d %H:%M:%S %Z %Y\n", tm_ptr);
printf(timebuf);
gettimeofday(&tv, 0);
ltime = tv.tv_sec + 1;
usleep(1000000 - tv.tv_usec);
s = dlp_SetSysDateTime(sd, ltime);
return 0;
}
/***********************************************************************
*
* Function: user_fn
*
* Summary: Set the username, UserID and PCID on the device,
* similar to install-user, but interactive
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
int user_fn(int sd, int argc, const char *argv[])
{
int c, /* switch */
ret;
struct PilotUser User;
char *userName = NULL;
char *userID = NULL, *viewerID = NULL, *lastSyncPC = NULL;
poptContext po;
struct poptOption user_options[] = {
{"user", 'u', POPT_ARG_STRING, &userName, 'u', "Set Username on the Palm device (use double-quotes)"},
{"id", 'i', POPT_ARG_STRING, &userID, 'i', "Set the numeric UserID on the Palm device"},
{"viewid", 'v', POPT_ARG_STRING, &viewerID, 'v', "Set the numeric ViewerID on the Palm device"},
{"pcid", 'p', POPT_ARG_STRING, &lastSyncPC, 'p', "Set the numeric PCID on the Palm device"},
{"help", 'h', POPT_ARG_NONE, NULL, 'h', "Display this information"},
POPT_TABLEEND
} ;
optind = 0;
po = poptGetContext("dlpsh", argc, argv, user_options, 0);
while ((c = poptGetNextOpt(po)) >= 0) {
switch (c) {
case 'u': /* FALLTHRU */
case 'i': /* FALLTHRU */
case 'v': /* FALLTHRU */
case 'p':
break;
case 'h':
poptPrintHelp(po,stdout,0);
return 0;
break;
default :
fprintf(stderr,"Bad option %d (%c)\n",c,c);
return 0;
}
}
if (c < -1)
{
/* an error occurred during option processing */
fprintf(stderr, "%s: %s\n",
poptBadOption(po, POPT_BADOPTION_NOALIAS),
poptStrerror(c));
return 1;
}
ret = dlp_ReadUserInfo(sd, &User);
if (ret < 0) {
printf("dlp_ReadUserInfo: err %d\n", ret);
return -1;
}
if (!userName && !userID && !viewerID && !lastSyncPC) {
printf(" Username = \"%s\"\n"
" UserID = %08lx (%i)\n"
" ViewerID = %08lx (%i)\n"
" PCid = %08lx (%i)\n", User.username,
User.userID, (int) User.userID,
User.viewerID, (int) User.viewerID,
User.lastSyncPC, (int) User.lastSyncPC);
return 0;
}
if (userName) {
strncpy(User.username, userName, sizeof(User.username));
printf(" Username = \"%s\"\n", User.username);
}
if (userID) {
User.userID = strtoul(userID, NULL, 16);;
printf(" UserID = %08lx (%i)\n", User.userID,
(int) User.userID);
}
if (viewerID) {
User.viewerID = strtoul(viewerID, NULL, 16);;
printf(" ViewerID = %08lx (%i)\n", User.viewerID,
(int) User.viewerID);
}
if (lastSyncPC) {
User.lastSyncPC = strtoul(lastSyncPC, NULL, 16);
printf(" PCid = %08lx (%i)\n", User.lastSyncPC,
(int) User.lastSyncPC);
}
User.successfulSyncDate = time(NULL);
User.lastSyncDate = User.successfulSyncDate;
ret = dlp_WriteUserInfo(sd, &User);
if (ret < 0) {
printf("dlp_WriteUserInfo: err %d\n", ret);
return -1;
}
return 0;
}
/***********************************************************************
*
* Function: timestr
*
* Summary: Build an ISO-compliant time string for use later
*
* Parameters: None
*
* Returns: String containing the proper time
*
***********************************************************************/
char *timestr(time_t t)
{
struct tm tm;
static char buf[50];
tm = *localtime(&t);
sprintf(buf, "%04d-%02d-%02d %02d:%02d:%02d",
tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
tm.tm_hour, tm.tm_min, tm.tm_sec);
return (buf);
}
/***********************************************************************
*
* Function: parse_command
*
* Summary: Parses and executes a command
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
void parse_command(int sd, const char *cmd)
{
char *argv[32];
int argc,
inc;
char *cmd_dup = strdup(cmd);
argc = 0;
/* Changing input? BAD BAD BAD... -DD */
argv[0] = strtoke(cmd_dup, " \t\n", "\"'");
while (argv[argc] != NULL) {
argc++;
/* Tsk, tsk. Changing the input again! -DD */
argv[argc] = strtoke(NULL, " \t\n", "\"'");
}
if (argc == 0) {
free(cmd_dup);
return;
}
for (inc = 0; command_list[inc].name != NULL; inc++) {
if (strcasecmp(argv[0], command_list[inc].name) == 0) {
command_list[inc].func(sd, argc, (const char **)argv);
}
}
free(cmd_dup);
return;
}
/***********************************************************************
*
* Function: handle_single_command
*
* Summary: Dispatch a command from the cmdline and exit
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
void handle_single_command(int sd, char *cmd)
{
parse_command(sd, cmd);
/* FIXME: knghtbrd: log something or not? */
dlp_EndOfSync(sd, 0);
pi_close(sd);
exit(0);
}
/***********************************************************************
*
* Function: handle_user_commands
*
* Summary: Read user commands interactively
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
void handle_user_commands(int sd)
{
#ifdef HAVE_LIBREADLINE
/* A safer alternative
char *line = (char *)malloc(256*sizeof(char)),
*/
char *line,
*prompt = "dlpsh> ";
#else
char buf[256];
#endif
printf("\nWelcome to the DLP Shell\n"
"Type 'help' for additional information\n\n");
pi_watchdog(sd, TICKLE_INTERVAL);
for (;;) {
fflush(stdout);
#ifdef HAVE_LIBREADLINE
line = readline(prompt);
if (line == NULL) /* user pressed ^d or so */
break;
if (*line) /* skip blanks */
add_history(line);
parse_command(sd, line);
free(line);
#else
printf("dlpsh> ");
if (fgets(buf, 256, stdin) == NULL)
break;
parse_command(sd, buf);
#endif
}
printf("\n");
/* User must have pressed ^d or something */
parse_command(sd, "exit");
}
/***********************************************************************
*
* Function: exit_fn
*
* Summary: Exit the DLP shell and write a log entry on the Palm
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
int exit_fn(int sd, int argc, const char *argv[])
{
printf("Exiting.\n");
dlp_AddSyncLogEntry(sd, "dlpsh, the DLP Protocol Shell ended.\n\n"
"Thank you for using pilot-link.\n");
dlp_EndOfSync(sd, 0);
pi_close(sd);
exit(0);
}
/***********************************************************************
*
* Function: reopen_fn
*
* Summary: Reopen the connection.
*
* Parameters: None
*
* Returns: Nothing
*
***********************************************************************/
int reopen_fn(int sd, int argc, const char *argv[])
{
printf("Reopening.\n");
dlp_AddSyncLogEntry(sd, "dlpsh, the DLP Protocol Shell ended.\n\n"
"Thank you for using pilot-link.\n");
dlp_EndOfSync(sd, 0);
pi_close(sd);
sleep (2);
longjmp (main_jmp, 1);
}
/***********************************************************************
*
* Function: strtoke
*
* Summary: Strip out path delimiters in arguments and filenames
*
* Parameters: None
*
* Returns: Input string minus path delimiters (ala basepath)
*
***********************************************************************/
char *strtoke(char *str, const char *ws, const char *delim)
{
int inc;
static char *s = NULL,
*start;
if (str != NULL) {
s = str;
}
inc = strspn(s, ws);
s += inc;
start = s;
if (*s == '\0') {
return NULL;
} else if (strchr(delim, *s) != NULL) {
start++;
s = strchr(s + 1, *s);
*s = '\0';
s++;
} else {
inc = strcspn(s, ws);
if (s[inc] == '\0') {
s += inc;
} else {
s[inc] = '\0';
s += inc + 1;
}
}
return start;
}
int main(int argc, const char *argv[])
{
int c = -1,
sd = -1;
char
*cmd = NULL;
poptContext po;
enum { mode_none=0, mode_interactive=257, mode_command }
run_mode = mode_none;
struct poptOption options[] = {
USERLAND_RESERVED_OPTIONS
{"command", 'c', POPT_ARG_STRING, &cmd, mode_command, "Execute <cmd> and exit immediately"},
{"interactive", 'i', POPT_ARG_NONE, NULL, mode_interactive, "Enter interactive mode."},
POPT_TABLEEND
} ;
po = poptGetContext("dlpsh", argc, argv, options, 0);
poptSetOtherOptionHelp(po,"\n\n"
" An interactive Desktop Link Protocol (DLP) Shell for your Palm device.\n"
" dlpsh can query many different types of information from your Palm\n"
" device, such as username, memory capacity, set the time, as well as\n"
" other useful functions.\n\n"
" While inside the dlpsh shell, type 'help' for more options.\n\n");
if (argc < 2) {
poptPrintUsage(po,stderr,0);
return 1;
}
while ((c = poptGetNextOpt(po)) >= 0) {
switch(c)
{
case mode_command:
case mode_interactive:
if (run_mode == mode_none) {
run_mode = c;
} else {
if (c != run_mode) {
fprintf(stderr," ERROR: Specify exactly one of -c or -i\n");
return 1;
}
}
break;
default:
fprintf(stderr," ERROR: Unhandled option %d.\n",c);
return 1;
}
}
if ( c < -1) {
plu_badoption(po,c);
}
if (mode_none == run_mode) {
fprintf(stderr," ERROR: Specify exactly one of -c or -i\n");
return 1;
}
setjmp (main_jmp);
sd = plu_connect();
if (sd < 0)
goto error;
if (dlp_OpenConduit(sd) < 0)
goto error_close;
if (cmd != NULL)
handle_single_command(sd, cmd);
else
handle_user_commands(sd);
return 0;
error_close:
pi_close(sd);
error:
return -1;
}
/* vi: set ts=8 sw=4 sts=4 noexpandtab: cin */
/* ex: set tabstop=4 expandtab: */
/* Local Variables: */
/* indent-tabs-mode: t */
/* c-basic-offset: 8 */
/* End: */
|