History log of /frameworks/base/obex/javax/obex/ObexHelper.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
ee1c033f6e0c2e709bd63adb419de3c5212fdf8f 20-Apr-2011 Jaikumar Ganesh <jaikumarg@android.com> am 24a16e6c: am c34c88b9: am ec1a8f7a: Merge "Unable to push files to Windows 7"

* commit '24a16e6c53d9b45c0cfdf150425002adc919955b':
Unable to push files to Windows 7
e83b744d7d0b3caaf8f5456b795331d5db2495a3 22-Mar-2011 Erik Ljungberg <erik.ljungberg@sonyericsson.com> Unable to push files to Windows 7

Windows 7 says it can handle the maximum OBEX packet size. However
if the maximum packet size is used the transfer will fail. This
should be fixed by Microsoft but until they do the only way to solve
this is to reduce the maximum packet size for the OBEX client.

Change-Id: I51975eec972395ae3f1f21cca236b223d0812ef3
/frameworks/base/obex/javax/obex/ObexHelper.java
929a1c219248b62778807cac8ea256c7ac0fda6a 02-Feb-2011 Brian Carlstrom <bdc@google.com> Removing android.security.MessageDigest

Bug: 3392028
Change-Id: I6b9732da17d086ba00c846c3ad1c7fb39baf9502
/frameworks/base/obex/javax/obex/ObexHelper.java
0b309d6ee433d55b7499d7bbd447494366ef1316 20-Jul-2009 Jackson Fan <xyfan@motorola.com> Improve Obex compatibility

Handle headers with excessive whilespace
Send correct reponse code when client abort onPut
/frameworks/base/obex/javax/obex/ObexHelper.java
8d95d0a13a278c4bd4dbffb682acf1e457dfb94b 16-Jul-2009 Tao Liejun <L.J.Tao@motorola.com> Fix a bug introduced in obex cleanup

Avoid exception when an empty array is passed to convert to Unicode
Before cleanup, there used to be an empty try/catch
/frameworks/base/obex/javax/obex/ObexHelper.java
05ff98bbefda39b9ff26f8bca132cfd0248745c6 14-Jul-2009 Tao Liejun <L.J.Tao@motorola.com> Fix minor obex bugs and re-format the comments

re-format comments
move connectible to connectable
remove unnecessary throws
remove not-used function ClientOperation.readResponse()
fix client abort case for PUT
set mOpen for PrivateOutputStream
add to platform.xml
/frameworks/base/obex/javax/obex/ObexHelper.java
3998bf009acaf8cde4d7f837f8b8e41ae0a65141 02-Jul-2009 Tao Liejun <a19884@motorola.com> Obex library cleanup, third pass

- Change variable namings
- Remove interface public modifier
- Move 2 duplicate methods to ObexSession
- Removed unused code and variables
- Use static variables for some protocol defines
/frameworks/base/obex/javax/obex/ObexHelper.java
41557e18fa3fc5791a5a1c7f0051ae3385608bc4 01-Jul-2009 Nick Pelly <npelly@google.com> Obex library cleanup, second pass.

o Use mMemberField variable naming as per style guide
o ClientSession.trans is only used in the ctor, doesn't need to be a member
o Rename connectionOpen to mOpen and isConnected to mObexConnected to reduce
confusion
o Refactor duplicated code into helper functions (setRequestActive())
o Fix whitespace around comment blocks
o Change unnecessary public scope's to package private (eg setRequestInactive())
o Remove a redundant factory method ClientSession.createHeaderSet()
o Rename OPTIMIZATION to TODO to match Android style
o Rename java.io.IOException to IOException
o Be consistent with variable naming - use header not headers
/frameworks/base/obex/javax/obex/ObexHelper.java
2e0da96e757a977154063f980d3f4e1abd41cf09 01-Jul-2009 Nick Pelly <npelly@google.com> Obex library cleanup, first pass.

o Add Android.mk file.
o Add @hide so it is not exposed in the public API. It is not yet in shape.
o Prefer @throws to @exception
o Do not use @version. This is meaningless in Android.
o Prefer classes 'final' unless explicitly allowing inheritance
(See "Effective Java" item 15)
o Prefer CamelCaps java naming even for acronyms (OBEXHelper -> ObexHelper)
o Use the built-in MD5 library.
o Move ObexConstants into ObexHelper.
o Remove unused variables.
o Prefer stricter access priveleges. Most importantly, avoid public fields.
o Don't use 'import java.io.*'. Name each class explicitly.
o Delete commented out code. If its not used then remove it.
/frameworks/base/obex/javax/obex/ObexHelper.java