What is the default path of the sqlite db for the identity service?

2021-04-04 Thread Danny
clear the egos in my db. So where is the sqlite db of the identity service located? I don't find such a .db file in /var/lib/gnunet/.local/share/gnunet Thanks! Danny

Re: Interested in helping out

2021-04-03 Thread Danny
g/gnunet-python.git/) I'm sure creating a Gnunet app is actually contributing to the project. For one thing, it will create exposure for the project, which I think it could definetally use. I wish you luck! Danny. On Sat, 2021-04-03 at 15:27 +0100, William Liquorice wrote: > > Hello,

Re: Fwd: Re: What is the scheduler about?

2021-02-27 Thread Danny
using the built- in scheduler and I can just use unix domain sockets and have all the freedom the world about how I use those sockets. :) It's going to be a bit more work I guess, but I guess it will be worth it. Groetjes, Danny On Sat, 2021-02-27 at 18:08 +0100, TheJackiMonster wrote: >

Re: What is the scheduler about?

2021-02-27 Thread Danny
Yeah thank you, but actually I'm using Rust, and I like the web servers available for it and its async/await syntax. :) And besides I think wrapping gnunet in Rust is enough work already. Groetjes, Danny On Sat, 2021-02-27 at 17:49 +0100, Schanzenbach, Martin wrote: > If you are not pic

Re: Fwd: Re: What is the scheduler about?

2021-02-27 Thread Danny
bles (like a message queue) that the scheduler uses (considering they access it from different threads). I guess I'll just have to dispatch all the api calls done on the web server thread(s) with GNUNET_SCHEDULER_add_now. Danny. On Sat, 2021-02-27 at 17:24 +0100, TheJackiMonster wrote

Fwd: Re: What is the scheduler about?

2021-02-27 Thread Danny via Mailinglist for GNUnet developers
wrong here? Anyway, Thanks a lot. Danny --- Begin Message --- Hey thanks, Yeah that clarifies/explains it. Now I have been able to connect to the identity service, create an ego, and disconnect on shutdown so that it doesn't get stuck. :) Thanks! Danny On Sat, 2021-02-27 at 10:32 +0100, Schanze

Re: What is the scheduler about?

2021-02-27 Thread Danny
Hey thanks, Yeah that clarifies/explains it. Now I have been able to connect to the identity service, create an ego, and disconnect on shutdown so that it doesn't get stuck. :) Thanks! Danny On Sat, 2021-02-27 at 10:32 +0100, Schanzenbach, Martin wrote: > Hi, > > let us first try

What is the scheduler about?

2021-02-25 Thread Danny
Hey guys, I've been using GNUNET_PROGRAM_run2, and have been trying it with and without the scheduler. What strikes me as odd is that I'm not able to ctrl+c my application. I am also not able to catch the SIGINT in my application. How is this done? Is this intended behavoir? Thanks a lot, Danny

Configuration for connecting to services

2021-02-18 Thread Danny
piled binaries. Any help is appreciated! Danny.

Re: Manually storing DHT content

2021-02-17 Thread Danny
gt; > Storing blog posts (e.g. html pages) in fs seems reasonable to me. > And using > the messenger feature for propagation/notifications of updates and > possibly comments would allow you to > build a content platform around it. > > Br > Martin > > > On 17. Feb

Re: Manually storing DHT content

2021-02-17 Thread Danny
t know how long the messages in a chat-room remain available, but I'm guessing the messages are encrypted for the other participants that were in the room at the moment the message was sent? But anyway, good to see such a system is being integrated as well. :) Danny. On Wed, 2021-02-17

Re: Manually storing DHT content

2021-02-17 Thread Danny
ent without the need of the originator of the content to be online, I would have been there. Thanks. Danny On Wed, 2021-02-17 at 12:29 +0100, Christian Grothoff wrote: > Nope, datastore is _only_ for the file-sharing subsystem, datacache > is > for the DHT (alas DATACACHE does not have s

Manually storing DHT content

2021-02-17 Thread Danny
Hey guys, Quick question. Can I use GNUNET_DATASTORE_put for manually storing content that would be available by DHT GET requests from others nodes? Thanks! Danny