Commit Graph

2660 Commits (c5623e2acdf96f3743e91fbbb44eb51a8fdb8080)

Author SHA1 Message Date
Kevin P. Fleming 88ccb628f9 report address of peer trying to subscribe to unknown hint
20 years ago
Joshua Colp ff29ba6296 Add support to have maxauthreq as a global option
20 years ago
Kevin P. Fleming 648bc1828d remove some more bad examples of using printf
20 years ago
Joshua Colp 3d8ef8de96 Add configuration option for IAX2 users that will limit the amount of outstanding AUTHREQs we are waiting for replies on.
20 years ago
BJ Weschke b617860594 Don't do wierd things on a callback agent that has attempted logoff while still on the phone.
20 years ago
Joshua Colp 5a86fcf1f8 Instead of giving the scheduled item ID on a peer expiration, give the time until they expire (issue #7455 reported by slavon)
20 years ago
Joshua Colp f452a64598 Spell extension correctly in documentation for chan_oss dial (issue #7487 reported by flefoll)
20 years ago
Olle Johansson 2211a552d3 Tell clients based on old SIP standard that we only support MD5 digest authentication...
20 years ago
Olle Johansson b8e4f60589 issue #7470 - Need larger buffer for record-route headers...
20 years ago
Russell Bryant 99b3637d6a use ast_set_callerid to be more consistent and to make sure that the
20 years ago
Olle Johansson 27aa56e14e Don't delete scheduled item twice in sip_destroy (already fixed in svn trunk)
20 years ago
Kevin P. Fleming 3d09ddb98e ensure that two SIP channels that exist at the same moment will not have the same channel names (issue #7245, different fix)
20 years ago
Olle Johansson bbcb713b68 Issue 6997 maybe, but anyway - don't retransmit responses to NON-invite requests.
20 years ago
Tilghman Lesher f6b683b302 Bug 7425 - Size of buffer is passed in by len
20 years ago
Olle Johansson e5505d1baf Issue #6820 - Possible fix (already implemented in trunk)
20 years ago
Russell Bryant 4893f1917f don't store multiple secrets delimited with semicolons for peers because this
20 years ago
Joshua Colp 7807373222 Zero out a declared structure so as to not crash if it contains invalid data (reported by Qwell on #asterisk-dev)
20 years ago
Olle Johansson 3cf57b8066 Issue 7294 - patch by phsultan - Asterisk sends Invite instead of BYE in some cases.
20 years ago
Kevin P. Fleming b9e587a361 use existing dial string parser for strings supplied to iax2_devicestate, because they can be complete dial strings, not just device names
20 years ago
Kevin P. Fleming cb1dc40802 only allow chan_local to masquerade the outbound channel onto its owner, instead of the other way around (this will ensure that group variables on the outbound channel as preserved)
20 years ago
Joshua Colp c38c7a1f46 Remove an unneeded double lock (issue #7310 reported by arkadia)
20 years ago
Olle Johansson 4de28aa7cc Do not require a context on a domain= setting
20 years ago
Russell Bryant 8daadb91c1 fix some broken code with BRIDGE_OPTIMIZATION defined (issue #7292)
20 years ago
Kevin P. Fleming f0d3be1740 clean up yesterday's security fix to not cause breakage when video mini frames are received
20 years ago
Kevin P. Fleming c515ef705c ensure that the received number of bytes is included in all IAX2 incoming frame analysis checks (fixes a known vulnerability)
20 years ago
Russell Bryant eeb613ea3d fix misplaced manager event (issue #6866, flefoll)
20 years ago
Kevin P. Fleming 547a070805 allow SIPCHANINFO(peername) to work for calls from users as well (issue #7215)
20 years ago
Kevin P. Fleming 6b101367b8 oops... make sure to stop processing a request once we have sent an authentication challenge (issue #7220)
20 years ago
Kevin P. Fleming 5ecca96df5 don't send CANCEL on a pending INVITE if we haven't received a provisional response yet... mark it pending until the first response is received (issue #7079)
20 years ago
Kevin P. Fleming 84790a577b respect 'usecallingpres' in zapata.conf even if CLID has not been set for the channel (issue #7123)
20 years ago
Kevin P. Fleming 76066c2b74 fix for non-OSP builds (issue #7217)
20 years ago
Kevin P. Fleming 9739139287 add an option to allow the admin to 'hide' SIP user/peer names from systems trying to 'fish' names
20 years ago
Russell Bryant 6d3d5e1649 fix the sourceaddress option (issue #7213, alphaque)
20 years ago
Kevin P. Fleming d6873875cc simplify/fix lock retry, and fix comment
20 years ago
BJ Weschke f84891dfbb Sanity check code for an extended failure in trying to obtain a channel lock that may have been obtained elsewhere. Prevents the monitor thread of the SIP module from going into an infinite loop, effectively, breaking SIP until you restart Asterisk or the mutex is unlocked, whichever comes first.
20 years ago
Joshua Colp f0e022bbad Preserve presentation bit when going through chan_local (issue #7002 reported by acunningham)
20 years ago
Russell Bryant ee808b6187 fix the possibility of writing one byte past the end of a buffer.
20 years ago
Kevin P. Fleming 4eef3ef785 don't try to predict where the compiler will place things on the stack... put them in the right place explicitly (issues #7029 and #7100, maybe others)
20 years ago
Kevin P. Fleming 0c4cc3b0ce use the specified 'subscribecontext' for a peer rather than the context found via the target domain (domain contexts are for calls, not for subscriptions) (issue #7122, reported by raarts)
20 years ago
Joshua Colp dda49ce86b Make the minidle option actually exist as documented (issue #7159 reported by imran)
20 years ago
Kevin P. Fleming 89da276678 fix up a few more places to find the SDP properly (fallout from fix for #7124)
20 years ago
Kevin P. Fleming 53a0b36973 handle incoming multipart/mixed message bodies in SIP and find the SDP, if presnet (issue #7124 reported and patched by eborgstrom, but very different fix)
20 years ago
Kevin P. Fleming 2ef43a770b support 'inactive' tag for SDP media streams (simple fix, proper fix will appear in 1.4 release) (issue #7130)
20 years ago
Joshua Colp 3361be7b6e Fix codec priority stuff during authentication (issue #6194 reported by jkoopmann)
20 years ago
Olle Johansson 8b96daf53e Issue #7176 - Crash in expire_register
20 years ago
Olle Johansson d5d56f98c3 chan_sip did not use the TRANSFER_CONTEXT for transfers, like res_features. Now fixed.
20 years ago
Kevin P. Fleming 78986fe938 ensure that we send a response to REGISTER requests that are successfully authenticated but contain invalid Contact URIs
20 years ago
BJ Weschke adbfc9d3c7 Add the appropriate jumping behavior that is the standard for 1.2.X to SIPGetHeader that is now deprecated in /trunk. #7111 (blitzrage!!!)
20 years ago
Olle Johansson 6b93396fb9 Issue 7103 - mikma
20 years ago
BJ Weschke 6af35712ef Don't show agents as available when they are in wrap-up time. #6726 (ZX81)
20 years ago