You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to play around with creating an aiosip_auth package to be able to layer in authentication APIs, but the current middleware APIs aren't sufficient.
I really need to be able to intercept every incoming SIP message, so I think we'll need to change its design so that its done as a chained iterator: the middleware first received the message and then optionally yields it down to the actual handler below.
This would let me, for example, challenge all SUBSCRIPTION or REGISTER messages, regardless of when they show up in the dialog, without having the layer below having to handle being aware of the challenge authentication messages.
The text was updated successfully, but these errors were encountered:
I want to play around with creating an
aiosip_auth
package to be able to layer in authentication APIs, but the current middleware APIs aren't sufficient.I really need to be able to intercept every incoming SIP message, so I think we'll need to change its design so that its done as a chained iterator: the middleware first received the message and then optionally yields it down to the actual handler below.
This would let me, for example, challenge all SUBSCRIPTION or REGISTER messages, regardless of when they show up in the dialog, without having the layer below having to handle being aware of the challenge authentication messages.
The text was updated successfully, but these errors were encountered: