Changeset 2408 for pjproject/trunk/pjsip-apps/src/samples/simple_pjsua.c
- Timestamp:
- Jan 1, 2009 10:08:21 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/samples/simple_pjsua.c
r2394 r2408 183 183 184 184 puts("Press 'h' to hangup all calls, 'q' to quit"); 185 fgets(option, sizeof(option), stdin); 185 if (fgets(option, sizeof(option), stdin) == NULL) { 186 puts("EOF while reading stdin, will quit now.."); 187 break; 188 } 186 189 187 190 if (option[0] == 'q')
Note: See TracChangeset
for help on using the changeset viewer.