-rw-r--r-- | core/obex/obexserver.cpp | 15 |
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 @@ -213,8 +213,9 @@ static void obex_conn_event (obex_t *handle, obex_object_t *object, case OBEX_CMD_CONNECT: break; case OBEX_CMD_DISCONNECT: OBEX_TransportDisconnect(handle); + _exit(0); break; default: break; } @@ -433,15 +434,17 @@ bool ObexServer::start(RunMode runmode, Communication comm) if ( fd[ 1 ] ) 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; if ( fd[ 1 ] ) |