Ignacio Gómez
Ignacio Gómez
I don't know why you want to limit connections to the broker itself, but you're probably better off handling it there. So I'd recommend forking the plugin and implementing it...
Hey, @deddy2101, sorry for not checking this yet. I'll try to read a bit about Cloudflare's JWT implementation and then take a look at the PR during the weekend. Cheers!
I did some work last week to enable auto testing on PRs, but it seems it was not retroactive. Luckily, I'm not zealously in the "gradual commits" camp when it's...
Hi, @rianorie! Sadly, when I started the plugin I didn't have any similar need and never got to implement it, as you can see in this default error response: https://github.com/iegomez/mosquitto-go-auth/blob/master/auth-plugin.c#L158...
Sadly, I don't know because as I said I never looked into PSK functionality regarding Mosquitto and don't have time to do the research right now, so you're probably better...
You'd call your exported Go function from the C file's `mosquitto_auth_psk_key_get` one. When/how is that called from Mosquitto? Again, I don't know because I never looked into it.
After implementing your Go side function and using it in `mosquitto_auth_psqk_key_get`, you simply rebuild the `.so` shared object file that's loaded by Mosquitto. No need to rebuild Mosquitto itself, it'll...
This sounds like a bug I'll need to look into, the error should be simply skipped and the ACL check pass because of the files entry. That said, if you...
@bilgeexuu1 I think you're commenting in the wrong issue.
Yeah, I think you need to disable refreshment altogether or handle it in the connecting side to do an exponential backoff to break the cache seconds you set in order...