author | korovkin <korovkin> | 2007-01-24 18:38:04 (UTC) |
---|---|---|
committer | korovkin <korovkin> | 2007-01-24 18:38:04 (UTC) |
commit | a4a7bd22feb060a80e20c81cded43cc24f5cd423 (patch) (side-by-side diff) | |
tree | 5d92d27b96ad235f3815014f98d49c766461a678 | |
parent | 8644340455a433f4d6e3b31b329479f1e7983f78 (diff) | |
download | opie-a4a7bd22feb060a80e20c81cded43cc24f5cd423.zip opie-a4a7bd22feb060a80e20c81cded43cc24f5cd423.tar.gz opie-a4a7bd22feb060a80e20c81cded43cc24f5cd423.tar.bz2 |
OBEX push server has a more common description.
-rw-r--r-- | core/obex/obexserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/obex/obexserver.cpp b/core/obex/obexserver.cpp index 25d8224..f1fb205 100644 --- a/core/obex/obexserver.cpp +++ b/core/obex/obexserver.cpp @@ -324,33 +324,33 @@ errout: return lsession; } int ObexServer::initObex(void) { int channel = 10; //Channel on which we do listen if (m_obex) return 0; m_obex = ::OBEX_Init(transport, obex_event, 0); if (!m_obex) { printf("OBEX initialization error %d\n", errno); return -1; } if (transport == OBEX_TRANS_BLUETOOTH) { ::BtOBEX_ServerRegister(m_obex, NULL, channel); - m_session = addOpushSvc(channel, "OBEX push service"); + m_session = addOpushSvc(channel, "OBEX Object Push"); if (!m_session) { printf("OBEX registration error %d\n", errno); ::OBEX_Cleanup(m_obex); m_obex = NULL; return -1; } } else if (transport == OBEX_TRANS_IRDA) ::IrOBEX_ServerRegister(m_obex, "OBEX"); return 0; } bool ObexServer::start(RunMode runmode, Communication comm) { if ( runs ) { return false; // cannot start a process that is already running |