summaryrefslogtreecommitdiff
path: root/src/org/gnu/clojure
AgeCommit message (Collapse)Author
2011-06-14Mavenized the project. Upgraded to clojure 1.3.0.David Barksdale
2011-05-04Detect invalid PKCS#8 keys.David Barksdale
Worked on watchPeers. A fix for Safari. plugin.jar seems to have moved.
2011-02-10Lots of changes, added many new functions to the applet.David Barksdale
2011-02-02Created gen-class :set-context-classloader.David Barksdale
Fixed ProtectionDomain on compiled classes. The applet repl is now in the applet's namespace. Created *applet* so the repl can refer to the applet. Renamed in to write, IE8 didn't like "in".
2011-02-02GNUnet applet created.David Barksdale
The clojure-1.2.0.jar contains a hack to fix the ContextClassLoader.
2011-01-27Fixed send-pong-using, pongs sent using connected address.David Barksdale
Fixed bug with incoming TCP connections and the sessions map.
2010-12-05TCP seems to be working now!David Barksdale
2010-12-02Much work on the TCP transport.David Barksdale
Successfully negotiates outgoing connections, incoming should work also.
2010-11-22TCP transport can make outgoing connections, not quite working yet.David Barksdale
2010-11-21Did some work on the TCP transport.David Barksdale
2010-11-20We can forward FS_GET requests, but not very intelligently. FS_PUT are dropped.David Barksdale
2010-11-09Added TTL expiration heap. Worked on forward-request!David Barksdale
2010-11-07Added metrics. More work on filesharing.David Barksdale
2010-11-07More use of cpu-bound-executor and a few optimisations.David Barksdale
2010-11-07Added ThreadPoolExecutors to keep track of CPU and IO load.David Barksdale
Network load should correspond to the selector-continuations-queue. Removed some overzalous use of the exception-m monad.
2010-11-04More work on FS_GET handling.David Barksdale
2010-11-03Added new exception-m monad. Added :when-let and :when-not to domonad.David Barksdale
Replaced conditional with m-when. Embraced parser.clj with with-monad. Discovered str function is useful for formatting strings.
2010-11-02New filesharing message handlers.David Barksdale
2010-10-30First steps in handling CORE_ENCRYPTED_MESSAGE. Make date comparisons moreDavid Barksdale
readable.
2010-10-30Use domonad for our other complex parsers, it makes them easier to read.David Barksdale
2010-10-30Let the parse/encode functions handle the encrypted parts of messages.David Barksdale
This is a better method to use for core-encrypted-messages.
2010-10-18Some work on CORE_PONG support. We now make it to peer-status-key-confirmed!David Barksdale
2010-10-18Added CORE_PING support. Fixed AES key encoding. Now peers have connected state.David Barksdale
2010-10-16Implemented AES crypto. More work on SET_KEY handling.David Barksdale
2010-10-16Implemented HKDF. Moved small-primes into it's own file because it was breakingDavid Barksdale
the clojure editor in eclipse. Re-wrote generate-aes-key! using javax.crypto.KeyGenerator.
2010-10-15More work on SET_KEY handling. Changed remote-peer state management a bit.David Barksdale
Better RNG security.
2010-10-15Fix make-rsa-private-key, tested rsa-encrypt! and rsa-decrypt.David Barksdale
2010-10-14Added core-state-agent, RSA encrypt-decrypt (untested).David Barksdale
Fixed encode-rsa-public-key, optimized parse-rsa-public-key. Using clojure.test for tests, added generate-kblock-key test.
2010-10-12Changed remote-peer-struct:public-key to remote-peer-struct:public-key-atomDavid Barksdale
in order to resolve a identity/value confusion.
2010-10-12New signed message parsing method. Added SET_KEY message parsing.David Barksdale
Several changes in the interface between transport and protocol layers. We now correctly add peer info learned from incoming non-HELLO messages because we need it for sending out PONGs more correctly. Removed half-implemented "connect" code.
2010-10-11We now handle PING messages in the case of PONG_OWN.David Barksdale
2010-10-10We now handle incoming HELLO and PONG messages and verify addresses accordingly!David Barksdale
2010-10-08Fixed UDP sender-id. Incoming UDP messages now passed up to transport layer.David Barksdale
2010-10-08Continuations and pending messages are now stored in a ConcurrentLinkedQueue.David Barksdale
Starting code for address validation. UDP message sending working!
2010-10-05UDP transport can now receive packets!David Barksdale
2010-10-04Added selector loop thread to peer.David Barksdale
2010-10-03Now we're creating sockets and selectors and selectable channels, oh my!David Barksdale
2010-10-03More refactoring and work on UDP.David Barksdale
2010-10-03Refactoring and cleaning up. More work on UDP transport.David Barksdale
2010-09-29More work on network transport support. Switching gears to add UDP support ↵David Barksdale
first.
2010-09-26Making the code a bit more readable/consistant.David Barksdale
2010-09-24Fixed tcp dependencies and upgraded to Clojure 1.2.0.David Barksdale
2010-09-23Moved some functions around and added more doc strings.David Barksdale
2010-07-08Fix encode-message and some more work on downloading hostlists.amatus
2010-07-02Use a map of maps for collections of transports.amatus
2010-05-24Parse inet address for tcp transport.David Barksdale
2010-05-22Some fixes to hello parsing and processing.David Barksdale
2010-05-20Starting work on processing received hello messages so that the TCP transportDavid Barksdale
will have addresses to consume.
2010-05-18Starting work on tcp transport.David Barksdale
2010-05-16Clean up the prime generation code.David Barksdale