On 17 Sep 2005, at 17:50, Matthew Toseland wrote: > Status of 1:many streams: > - Publish is working. > - Subscribe is partially working. It is not routed, but it can tap the > stream if the stream happens to be routed through the node. > - There is an interface for this in the current 0.7 text mode > interface. > > The person whom I had hoped would implement IRC over Freenet has just > gone back to school, so if we are going to do it, I will have to do > it. > I am of the view that it is possible but fairly complex. Is there an > obvious, simpler test for publish/subscribe that I could implement? I > like the idea of IRC over Freenet, but it does seem rather complex.
Sure, command line commands as follows: publish <privkey> "<text>" - This will publish the <text> to the broadcast whose private key is <privkey> subscribe <pubkey> [<filename>] - This will subscribe to the broadcast whose public key is <pubkey> and output published text to stdout, or <filename> if specified Ian.
