Closed ghenry closed 3 years ago
Please don't open issues just for asking question on how to implement things. Use StackOverflow instead for such kind of questions. And if you want to get all requests you need to be at the top of the chain. listen
will handle only calls, i.e. INVITE.
Thanks. Well, I had an issue and I asked. If the issue tracker is just for Bugs, please state that in the project docs or on MetaCPAN. Maybe a Help file pointing at StackOverflow and an appropriate tag?
I think we have a different understanding of what an issue tracker is. In my opinion it is not a generic support forum, but about bugs, feature requests, ... And it seems to be used mostly this way too. But I agree that the wording is ambivalent and that what you ask about is in some way an "issue" too. Note that I did not add it as issue tracker though in MetaCPAN, but instead I added as bug tracker in Makefile.PL, and MetaCPAN is showing this entry as issue tracker.
Anyway, there is no official support forum for this module and I have not enough time to invest in this. For this reason I would not like to point out StackOverflow in the documentation as the official support site. But I hang around there a lot and often answer questions, including questions about Net::SIP.
Understood @noxxi and I appreciate your response. Very professional. I wish other contributors and maintainers were like this.
For others, I got this working by doing:
$ua->create_chain(
[ $ua->create_registrar, $ua->listen ],
(
filter => $save_details
)
);
then in my filter I get a Net::SIP::Request to pull things apart. BTW, this is all for https://github.com/ghenry/SentryPeer in my prototype. I'll git push
soon :-)
Hi,
I'm looking to get at all Method types processed:
but I'm only getting INVITEs into my filter (like the docs state - https://metacpan.org/pod/Net::SIP::Simple#listen-(-%ARGS-)):
Where should me filter be so I can get all the packets
Net::SIP::Registrar
is processing too?