Commits

Commit Message Author Age Changes
60912529 obexd: Fix format string issues Johan Hedberg 13 years ago 2 files, +2, -2
83f47d59 obexd: Fix the registration of the Transfer interface for FTP sessions When the type of the transfer was NULL, which is the case for most GET's, the Transfer interface was not registered. Vinicius Costa Gomes 13 years ago 1 file, +1, -1
4f4c120e obexd: Fix uninitialized variable warning Johan Hedberg 13 years ago 1 file, +3, -1
4c7d3b16 obexd: Use SIGUSR2 for toggling debug messages Johan Hedberg 13 years ago 1 file, +8, -0
67fd3438 obexd: Use SIGHUP for closing USB tty Johan Hedberg 13 years ago 3 files, +63, -28
add7fa2d obexd: Be loud about signal termination Johan Hedberg 13 years ago 1 file, +1, -0
eb5391fc obexd: Fix escape on filenames. Make use of g_markup_escape_text instead of g_uri_escape_string, so filenames are escaped accourding to the XML rules of normalization. Luiz Augusto von Dentz 13 years ago 1 file, +1, -1
d7be1c12 obexd: Fix bug when canceling an authorization request. When the connection is closed before the authorization is completed CancelAuthorization was being called on adapter ANY path which is wrong since the path used was the one returned by FindAdapter. Luiz Augusto von Dentz 13 years ago 1 file, +24, -16
1ff52027 obexd: Fix typo. Luiz Augusto von Dentz 13 years ago 1 file, +1, -1
c3333d5b obexd: Make sure the opened TTY is non-blocking Johan Hedberg 13 years ago 1 file, +24, -5
042dee1b obexd: Fix dead assignment. Value stored to 'watch' is never read. Luiz Augusto von Dentz 13 years ago 1 file, +1, -2
196e08df obexd: Don't retry tty opening on HUP This was a workaround from the start and now the issue can be taken care of on the kernel side. Johan Hedberg 13 years ago 3 files, +7, -12
b8f197da obexd: Minor coding style fixes Johan Hedberg 13 years ago 2 files, +1, -2
41d2c6f4 obexd: Fix returning  "not found" error for delete operations Johan Hedberg 13 years ago 1 file, +6, -5
638f1ded obexd: Don't call dbus_pending_call_cancel if we got a reply Calling dbus_pending_call_cancel when we already got a reply might trigger a double-unref on the libdbus side, so don't do this. Johan Hedberg 13 years ago 1 file, +15, -11
18f5d440 obexd: Fix possible null pointer deference. Luiz Augusto von Dentz 13 years ago 1 file, +2, -3
c52ef53a obexd: Improve file transfer (error) logging Johan Hedberg 13 years ago 2 files, +4, -1
60d4cba9 obexd: Fix tty initialization with PC Suite The previous patch won't work unless we make sure to initialize tty_needs_reinit to TRUE at startup. Johan Hedberg 13 years ago 1 file, +3, -1
c142e8f4 obexd: Give more accurate error returns to OBEX Get operations Previously obexd would always return "forbidden" to failed get operations. Now we at least return "not found" in the case of ENOENT and more specific errors can easily be added to the new switch statement in ftp_get(). Johan Hedberg 13 years ago 4 files, +38, -28
606f5671 obexd: Introduce symlinks option. It can be use to enable symbolic links on root folder. Luiz Augusto von Dentz 13 years ago 5 files, +79, -20
b5949205 obexd: Fix null pointer passed as an argument to a 'nonnull' parameter. Luiz Augusto von Dentz 13 years ago 1 file, +10, -3
95ea711d obexd: Fix possible memory leak. Luiz Augusto von Dentz 13 years ago 1 file, +1, -0
4a779362 obexd: Fix showing symlinks as files. symlinks was not being shown as directory but they were when inside a directory as files. Luiz Augusto von Dentz 13 years ago 1 file, +2, -2
88f8bd27 obexd: Use GCC visibility for exporting symbols Marcel Holtmann 13 years ago 1 file, +2, -0
646066a6 obexd: set O_TRUNC when open a file Forrest Zhao 13 years ago 1 file, +1, -1
ac08e32b obexd: Allow compilation with -Wsign-compare Marcel Holtmann 13 years ago 4 files, +5, -4
329efe60 obexd: Fix signed/unsigned comparison warnings of gw-obex Marcel Holtmann 13 years ago 1 file, +4, -2
87dfb1ac obexd: Use O_NOCTTY when opening the tty device Johan Hedberg 13 years ago 1 file, +1, -1
46a56a67 obexd: Fix guint64 format specifier Johan Hedberg 13 years ago 1 file, +1, -1
a906580f obexd: Don't open the tty at startup when in PC Suite mode We should only attempt tty opening when receiving the SIGUSR1 signal when in PC Suite mode. Johan Hedberg 13 years ago 1 file, +3, -0
2077c66c obexd: add support for Sync Getphonebook Forrest Zhao 13 years ago 1 file, +41, -2
e356b2e9 obexd: Fix compiler warning Marcel Holtmann 13 years ago 1 file, +1, -0
6a19f940 obexd: add initial framework support for SYNC client Forrest Zhao 13 years ago 3 files, +164, -0
ee7b55d2 obexd: use session_get_data(), session_set_data() to access 'priv' field of struct session_data Forrest Zhao 13 years ago 3 files, +32, -17
5e9fcefe obexd: rename pbapdata in struct session_data to priv, so that it could be reused by Sync client Forrest Zhao 13 years ago 2 files, +18, -18
e8aa19fe obexd: Update copyright information Marcel Holtmann 13 years ago 22 files, +22, -22
48d39fd1 obexd: Resolve adapter object path before calling RequestAuthorization. Luiz Augusto von Dentz 13 years ago 1 file, +81, -44
04235bf3 obexd: Introduce GetCapabilities support to client API. Luiz Augusto von Dentz 13 years ago 3 files, +111, -13
05dc075e obexd: Fix local includes Marcel Holtmann 13 years ago 4 files, +6, -2
9c7db692 obexd: Move debug statement after variable declaration Marcel Holtmann 13 years ago 1 file, +2, -2
2a776169 obexd: Return if function type is not provided Marcel Holtmann 13 years ago 1 file, +1, -0
6833a03c obexd: The static keyword has to come first Marcel Holtmann 13 years ago 1 file, +4, -4
fba78dba obexd: add support for Sync Putphonebook Forrest Zhao 13 years ago 3 files, +97, -2
cf70652a obexd: add Sync macro definition in gw-obex.h Forrest Zhao 13 years ago 1 file, +6, -0
d184f1d0 obexd: Rename SetFilters/GetFilters/ListAllFilters to SetFilter/GetFilter/ListFilterFields Raymond Liu 13 years ago 1 file, +9, -9
d7b7a065 obexd: for PBAP Pullvardlisting the name header could be empty Forrest Zhao 13 years ago 1 file, +5, -1
ecd621b9 obexd: Bug fix on session_get, do not register transfer twice Raymond Liu 13 years ago 1 file, +0, -8
99be1da3 obexd: Minor bug fix on Pull Search Function Raymond Liu 13 years ago 1 file, +2, -3
3a1e6b3e obexd: Implement Filter related function for PBAP client Raymond Liu 13 years ago 1 file, +194, -1
6497c0dd obexd: add Pull function for PBAP client Raymond Liu 13 years ago 1 file, +54, -0
Previous Next