Instead of data received being an NSString, have it be NSData because converting...
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 4 Aug 2007 08:37:19 +0000 (01:37 -0700)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 4 Aug 2007 08:37:19 +0000 (01:37 -0700)
commit560f7eb4384f3b13e3d0ff0839a39fa59e246a3e
tree5322b85dcb25e05fb64af287cea4b7f085deb13c
parent5aaff84448b43171082339e17f15fc566d39a65a
Instead of data received being an NSString, have it be NSData because converting to NSString was actually causing problems and NSXMLDocument can take in NSData just fine

* Source/DebuggerConnection.m: Making all of the delivery functions use NSData not NSString
([DebuggerConnection _handshake:])
([DebuggerConnection _updateStatus:])
([DebuggerConnection _stackReceived:])
* Source/SocketWrapper.m|h: ditto
([SocketWrapper dataReceived:deliverTo:]): Now uses NSData
([SocketWrapper receive:]): Save ourselves some trouble and don't convert the data to NSString
Source/DebuggerConnection.m
Source/SocketWrapper.h
Source/SocketWrapper.m