summaryrefslogtreecommitdiff
path: root/core/obex/obexserver.cpp
Side-by-side diff
Diffstat (limited to 'core/obex/obexserver.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/obexserver.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/core/obex/obexserver.cpp b/core/obex/obexserver.cpp
index 786e9f7..286961f 100644
--- a/core/obex/obexserver.cpp
+++ b/core/obex/obexserver.cpp
@@ -214,6 +214,7 @@ static void obex_conn_event (obex_t *handle, obex_object_t *object,
break;
case OBEX_CMD_DISCONNECT:
OBEX_TransportDisconnect(handle);
+ _exit(0);
break;
default:
break;
@@ -434,13 +435,15 @@ bool ObexServer::start(RunMode runmode, Communication comm)
fcntl( fd[ 1 ], F_SETFD, FD_CLOEXEC );
if (initObex() == 0) {
+ if ( fd[ 1 ] ) {
+ ::close(fd[1]);
+ fd[1] = 0;
+ }
do {
- if ( fd[ 1 ] ) {
- ::close(fd[1]);
- fd[1] = 0;
- }
- if (OBEX_HandleInput(m_obex, 10) < 0)
- _exit(0);
+ if (OBEX_HandleInput(m_obex, 60) < 0) {
+ fprintf(stderr,"failed to OBEX_HandleInput(), errno=%d\n");
+ _exit(1);
+ }
} while(1);
}
char resultByte = 1;