mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
Issue #1319 - Remove EARLY_BETA_OR_EARLIER condition
This commit is contained in:
parent
f4dd604bf5
commit
ecf0a07d12
3 changed files with 1 additions and 32 deletions
|
|
@ -1,3 +0,0 @@
|
|||
# Define indicating that this build is prior to one of the early betas. To be
|
||||
# unset mid-way through the beta cycle.
|
||||
EARLY_BETA_OR_EARLIER=
|
||||
|
|
@ -760,15 +760,7 @@ static int ShouldDrop(size_t len) {
|
|||
nr_socket_short_term_violation_time = TimeStamp::Now();
|
||||
#endif
|
||||
|
||||
// Bug 1013007
|
||||
#if !EARLY_BETA_OR_EARLIER
|
||||
return R_WOULDBLOCK;
|
||||
#else
|
||||
MOZ_ASSERT(false,
|
||||
"Short term global rate limit for STUN requests exceeded. Go "
|
||||
"bug bcampen@mozilla.com if you weren't intentionally "
|
||||
"spamming ICE candidates, or don't know what that means.");
|
||||
#endif
|
||||
}
|
||||
|
||||
if (sustained.getTokens(UINT32_MAX) < len) {
|
||||
|
|
@ -777,15 +769,8 @@ static int ShouldDrop(size_t len) {
|
|||
#ifdef MOZILLA_INTERNAL_API
|
||||
nr_socket_long_term_violation_time = TimeStamp::Now();
|
||||
#endif
|
||||
// Bug 1013007
|
||||
#if !EARLY_BETA_OR_EARLIER
|
||||
|
||||
return R_WOULDBLOCK;
|
||||
#else
|
||||
MOZ_ASSERT(false,
|
||||
"Long term global rate limit for STUN requests exceeded. Go "
|
||||
"bug bcampen@mozilla.com if you weren't intentionally "
|
||||
"spamming ICE candidates, or don't know what that means.");
|
||||
#endif
|
||||
}
|
||||
|
||||
// Take len tokens from both buckets.
|
||||
|
|
|
|||
|
|
@ -2236,19 +2236,6 @@ else
|
|||
AC_MSG_RESULT([no])
|
||||
fi
|
||||
|
||||
# Allow influencing configure with a defines.sh script.
|
||||
. "${srcdir}/build/defines.sh"
|
||||
|
||||
# If we're not building a release build, define EARLY_BETA_OR_EARLIER if it is
|
||||
# set in defines.sh
|
||||
if test "$BUILDING_RELEASE"; then
|
||||
# Override value in defines.sh, if any
|
||||
EARLY_BETA_OR_EARLIER=
|
||||
elif test "$EARLY_BETA_OR_EARLIER"; then
|
||||
AC_DEFINE(EARLY_BETA_OR_EARLIER)
|
||||
fi
|
||||
AC_SUBST(EARLY_BETA_OR_EARLIER)
|
||||
|
||||
# Allow someone to change MOZ_APP_NAME and MOZ_APP_BASENAME in mozconfig
|
||||
MOZ_ARG_WITH_STRING(app-name,
|
||||
[--with-app-name=APPNAME sets MOZ_APP_NAME to APPNAME],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue