CoreWebSocket icon indicating copy to clipboard operation
CoreWebSocket copied to clipboard

Web Socket Server and Client Library for iOS and OSX. Follows Core Foundation API style.

Results 9 CoreWebSocket issues
Sort by recently updated
recently updated
newest added

clang: error: linker command failed with exit code 1 (use -v to see invocation) Ld /Users/lv/Library/Developer/Xcode/DerivedData/mySocket-eejbwkwzhnjjjkaekcmqfajzpkjk/Build/Products/Debug/CoreWebSocket.framework/Versions/A/CoreWebSocket normal x86_64 cd /Volumes/Works/MySocket/mySocket/CoreWebSocket export MACOSX_DEPLOYMENT_TARGET=10.6 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -dynamiclib -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -L/Users/lv/Library/Developer/Xcode/DerivedData/mySocket-eejbwkwzhnjjjkaekcmqfajzpkjk/Build/Products/Debug -F/Users/lv/Library/Developer/Xcode/DerivedData/mySocket-eejbwkwzhnjjjkaekcmqfajzpkjk/Build/Products/Debug...

This fixes a problem when the data to be sent exceeds the immediate buffer space available. The previous code would write whatever would fit into the buffer and drop the...

WebSocketRelease() method doesn't release because WebSocketClients retain WebSocket. WebSocket retains WebSocketClients as well. Proposed workaround: `for (CFIndex i = 0; i < WebSocketGetClientCount(self.webSocket); ++i) { WebSocketRelease(self.webSocket); }`

Is there a plan to support secure web sockets?

Large messages are received, but WebSocketFrameParse seems to only handle the first frame resulting in truncation. It appears there was a previous attempt to fix that was reverted. Any chance...

Easier to add a podspec than figure out the directions ;0 All that should be added is :tag => 0.1 in the s.source hash. I can't tag your repository, so...

based on your example i cannot run my app. typedef enum WebSocketProtocol WebSocketProtocol; ISO C++ forbids forward reference to 'enum' types

I'm currently working on a project that needs to communicate with a WebSocket server. I've looked at the example in the `Readme.md` file and in `main.c` but they both seem...

I have been running the CoreWebSocketConsole example with the test.html client without any issues in receiving or sending messages on my development machine (Mac OS X 10.9). However, recently when...