summaryrefslogtreecommitdiff
path: root/src/library_sockfs.js
AgeCommit message (Collapse)Author
2013-11-29add missing mkport dependencyAlon Zakai
2013-11-06Merge pull request #1743 from fadams/fix-nodejs-socket-clientAlon Zakai
add support for node.js to act as a socket client
2013-11-04Give names to most manually assigned functions in the .js files, in form ↵Jukka Jylänki
"var x = function()" -> "function x()" so that error stack traces and profiling stack traces are more informative and do not contain anonymous functions.
2013-10-30replace window.WebSocket with window['WebSocket'] to avoid closure compiler ↵Fraser Adams
issues
2013-10-29updated library_sockfs.js to make WebSocket a local var and updated ↵Fraser Adams
library_browser.js to modify requestAnimationFrame to provide a fallback to setTimeout if window is undefined
2013-10-27add support for node.js to act as a socket clientFraser Adams
2013-09-27 - added idbfs and nodefsAnthony Pesch
- minor coding convention fixes
2013-08-31 - refactored accept code to automatically setup peers for incoming ↵Anthony Pesch
connections immediately upon connect. previously, this wasn't done until the server called accept, creating a small window of time for peer message events to be lost - renamed send_queue to dgram_send_queue just so its purpose is more clear
2013-08-31 - temp fix for test_enetAnthony Pesch
- added debugging info to websocket backend
2013-08-30 - moved hostname resolution functions to DNS objectAnthony Pesch
- minor whitespace fixes
2013-08-29lazy evaluate ws module requireAnthony Pesch
2013-08-29 - created SOCKFSAnthony Pesch
- added support for node-based listen servers - updated tests to also test against compiled listen servers
2013-08-09 - merged FS and VFS namespacesAnthony Pesch
- split off fs, memfs, sockfs and tty libraries