Nicholas Nethercote
|
c765d05739
|
Bug 831193 (part 2) - Don't use NS_MEMORY_REPORTER_IMPLEMENT for the effective-tld-service reporter. r=michal.novotny.
--HG--
extra : rebase_source : d9c79c95d14f8a958e0a5a268a5e1665efbe22ce
|
2013-01-15 21:26:44 -08:00 |
|
Ms2ger
|
d54dfa0c57
|
Bug 904831 - Part c: Move conditional MSVC_ENABLE_PGO definitions into moz.build and remove empty makefiles; r=mshal
|
2013-08-22 08:56:01 +02:00 |
|
Ms2ger
|
19f3e043e3
|
Bug 904831 - Part b: Move unconditional MSVC_ENABLE_PGO definitions into moz.build; r=gps
|
2013-08-22 08:56:01 +02:00 |
|
Ms2ger
|
4e45b3d52e
|
Bug 883284 - Part e: Move LIBXUL_LIBRARY into moz.build (k-o); r=ted
|
2013-08-22 08:56:00 +02:00 |
|
Ms2ger
|
66214743ad
|
Bug 882859 - Part b: Move FAIL_ON_WARNINGS into moz.build; r=joey+gps
|
2013-08-22 08:55:59 +02:00 |
|
Adrian Lungu
|
94d96bd431
|
Bug 882516 - Use AF_UNSPEC cached entries for AF_INET and AF_INET6 DNS requests, if possible. r=sworkman
|
2013-08-16 11:49:57 -07:00 |
|
Phil Ringnalda
|
b9fbc56b41
|
Back out cb68113d5052 (bug 901195) for xpcshell bustage
CLOSED TREE
|
2013-08-14 21:07:19 -07:00 |
|
Simone Carletti
|
e0b934cae4
|
Bug 902785 - add cloudcontrol.com to PSL. r=gerv. DONTBUILD.
|
2013-08-15 02:25:38 +01:00 |
|
Simone Carletti
|
678607b3ea
|
Bug 901195 - update .sv and .om in PSL. r=gerv.
|
2013-08-15 02:23:47 +01:00 |
|
Simone Carletti
|
9a562970b1
|
Bug 901193 - Add ro.com to PSL. r=gerv.
|
2013-08-15 02:22:57 +01:00 |
|
Ms2ger
|
0c3b97da57
|
Bug 901063 - Remove HB_DONT_DEFINE_STDINT defines; r=gps
These defines have been unnecessary since we removed mozilla/StandardInteger.h.
The upstream code will default to stdint.h typedefs without them.
|
2013-08-14 08:57:22 +02:00 |
|
Ms2ger
|
fe9c33f5f4
|
Bug 897921 - Remove some dead assignments in makefiles; r=mshal
|
2013-08-02 09:03:55 +02:00 |
|
Simon Montagu
|
7cb47ec935
|
Only test IDN nodes against kMaxDNSNodeLen on string-prepped IDNs that we're going to send to DNS, not the Unicode form for display only. Bug 892370, r=honzab
--HG--
rename : netwerk/test/unit/test_bug722299.js => netwerk/test/unit/test_idn_urls.js
|
2013-07-29 22:32:37 -07:00 |
|
pchang9@cs.wisc.edu
|
8058281b16
|
bug 898221 - search backwards for the last punycode delimiter instead of forwards. r=hurley
|
2013-07-30 13:01:11 -07:00 |
|
Ehsan Akhgari
|
085494b95d
|
Bug 895322 - Part 1: Replace the usages of MOZ_STATIC_ASSERT with C++11 static_assert; r=Waldo
This patch was mostly generated by running the following scripts on the codebase, with some
manual changes made afterwards:
# static_assert.sh
#!/bin/bash
# Command to convert an NSPR integer type to the equivalent standard integer type
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.cc" \
-o -iname "*.mm" \) | \
xargs -n 1 `dirname $0`/assert_replacer.py #sed -i -e "s/\b$1\b/$2/g"
}
convert MOZ_STATIC_ASSERT static_assert
hg rev --no-backup mfbt/Assertions.h \
media/webrtc/signaling/src/sipcc/core/includes/ccapi.h \
modules/libmar/src/mar_private.h \
modules/libmar/src/mar.h
# assert_replacer.py
#!/usr/bin/python
import sys
import re
pattern = re.compile(r"\bMOZ_STATIC_ASSERT\b")
def replaceInPlace(fname):
print fname
f = open(fname, "rw+")
lines = f.readlines()
for i in range(0, len(lines)):
while True:
index = re.search(pattern, lines[i])
if index != None:
index = index.start()
lines[i] = lines[i][0:index] + "static_assert" + lines[i][index+len("MOZ_STATIC_ASSERT"):]
for j in range(i + 1, len(lines)):
if lines[j].find(" ", index) == index:
lines[j] = lines[j][0:index] + lines[j][index+4:]
else:
break
else:
break
f.seek(0, 0)
f.truncate()
f.write("".join(lines))
f.close()
argc = len(sys.argv)
for i in range(1, argc):
replaceInPlace(sys.argv[i])
--HG--
extra : rebase_source : 4b4a4047d82f2c205b9fad8d56dfc3f1afc0b045
|
2013-07-18 13:59:53 -04:00 |
|
Ehsan Akhgari
|
3717325909
|
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
|
2013-07-30 10:25:31 -04:00 |
|
Joshua Cranmer
|
bb26e8f816
|
Bug 884061 - Part 4: Remove nsAtomicRefcnt.h, r=jlebar
--HG--
extra : rebase_source : ce24ab345baa48104328e3c101b7266a31e81870
|
2013-07-11 15:21:45 -05:00 |
|
Joshua Cranmer
|
9254ed8d14
|
Bug 884061 - Part 3q: Use NS_DECL_THREADSAFE_ISUPPORTS in netwerk/, r=macmanus
--HG--
extra : rebase_source : d029f73a1f27896c142f76dce263dd3542763b18
|
2013-07-18 21:24:13 -05:00 |
|
Patrick McManus
|
bcf5650b54
|
bug 887753 - server not found after reconnecting to etherpad r=sworkman
|
2013-07-19 18:40:00 -04:00 |
|
Arnaud Sourioux
|
60ed453c00
|
Bug 883360 - Remove bool operator and nsMainThreadPtrHolder conversion. r=bsmedberg
|
2013-07-19 12:53:12 -04:00 |
|
Ehsan Akhgari
|
c069003a4b
|
Bug 895141 - Remove useless prlong.h inclusions from the tree; r=jcranmer
|
2013-07-18 12:06:38 -04:00 |
|
Benoit Girard
|
103cc87697
|
Bug 892861 - Remove useless -D flags 'IMPL_THEBES,_IMPL_NS_GFX,...'. r=glandium
|
2013-07-12 08:56:54 -04:00 |
|
Trevor Saunders
|
238525e2d8
|
bug 887483 - remove a bunch of useless assignments to FORCE_STATIC_LIB implied by LIBXUL_LIBRARY=1 r=mshal
|
2013-07-11 11:06:34 -04:00 |
|
Gervase Markham
|
4b842d6289
|
Bug 864704 - re-add csiro.au to PSL. DONTBUILD.
|
2013-07-11 13:39:16 +01:00 |
|
Simone Carletti
|
50c7af0fe9
|
Bug 880662 - Add fastly.net to PSL. r=gerv. DONTBUILD.
--HG--
extra : rebase_source : b1603d10b5ecd5e7092d89b4dc6332ffe89cb5f7
|
2013-07-11 13:36:41 +01:00 |
|
Trevor Saunders
|
ea8461a6ca
|
bug 887854 - remove most useage of pratom.h r=mounir, mcmanus, jrmuizel
|
2013-06-16 03:09:07 -04:00 |
|
Josh Matthews
|
1791d4bce8
|
Bug 887191 - Force wrapped JS listeners to proxy callbacks to the main thread if no target is specified. r=mcmanus
|
2013-06-26 15:54:05 +01:00 |
|
Catalin Iacob
|
83b78343dc
|
Bug 798914 (part 5) - Use newly introduced mozilla::MallocSizeOf instead of nsMallocSizeOfFun. r=njn.
--HG--
extra : rebase_source : fc472490dd978d165f02f77ed37f07aed6e5bb61
|
2013-06-23 14:03:39 +02:00 |
|
Josh Matthews
|
0a5bd9fe41
|
Bug 883495 - Avoid releasing a scriptable DNS listener off the main thread. r=mcmanus
|
2013-06-20 09:18:16 +02:00 |
|
Brian O'Keefe
|
ed17339221
|
Bug 875934 - Move LIBRARY_NAME to moz.build (batch #1); r=mshal
--HG--
extra : rebase_source : 385d3fd65475ffc18ee44ae088753649470e214b
|
2013-06-17 15:21:01 -04:00 |
|
Phil Ringnalda
|
a3733bb686
|
Back out c50503ce8669 (bug 883495) for still leaking
CLOSED TREE
|
2013-06-19 20:20:52 -07:00 |
|
Josh Matthews
|
9310002990
|
Bug 883495 - Avoid releasing a scriptable DNS listener off the main thread. r=mcmanus
|
2013-06-20 02:33:57 +02:00 |
|
Josh Matthews
|
c8865869af
|
Backed out changeset 5a3dc3d31890 (bug 883495)
|
2013-06-19 18:16:04 +02:00 |
|
Josh Matthews
|
6423b6821d
|
Bug 883495 - Avoid releasing a scriptable DNS listener off the main thread. r=mcmanus
|
2013-06-19 16:28:33 +02:00 |
|
Ryan VanderMeulen
|
2a3f60db1f
|
Backed out changeset fb43bd87db39 (bug 883495) for mass carnage of a CLOSED TREE.
|
2013-06-18 13:02:40 -04:00 |
|
Josh Matthews
|
1cdcc32b6c
|
Bug 883495 - Avoid releasing a scriptable DNS listener off the main thread. r=mcmanus
|
2013-06-16 11:56:15 +01:00 |
|
Simone Carletti
|
1e31144ef0
|
Bug 859521 - Add AWS EC2 to PSL. r=gerv. DONTBUILD.
--HG--
extra : rebase_source : 9a4ac79ac4e03c2b85bf2f11c1c5366770bb1b65
|
2013-06-06 16:00:03 +01:00 |
|
Mike Shal
|
6f32ddf61c
|
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
|
2013-04-23 17:54:15 -04:00 |
|
Joey Armstrong
|
b5eb4cb307
|
bug 870406: move to moz.build (config batch #1) r=mshal
|
2013-05-24 17:21:14 -07:00 |
|
Ted Mielczarek
|
47d7af59de
|
bug 871712 - make MSVC PGO opt-in per-directory, and opt-in in the directories that matter. r=glandium
|
2013-05-16 09:33:26 -04:00 |
|
Steve Workman
|
a02069e2e9
|
Bug 870652 - Add null ptr check in nsDNSRecord::ReportUnusable to avoid crashing r=mcmanus
|
2013-05-14 16:35:18 -07:00 |
|
Ryan VanderMeulen
|
510f0a10f2
|
Backed out changeset f8a861253c57 (bug 859521) due to bustage.
|
2013-05-14 12:49:26 -04:00 |
|
Simone Carletti
|
b9679edf41
|
Bug 868331 - Add Heroku CloudFront to PSL. r=gerv.
|
2013-05-14 17:38:11 +01:00 |
|
Simone Carletti
|
3cdf97d3ac
|
Bug 859521 - Add AWS EC2 to PSL. r=gerv.
|
2013-05-14 17:35:44 +01:00 |
|
Simone Carletti
|
c5d38ee25a
|
Bug 863169 - Add GitHub Pages to PSL. r=gerv.
|
2013-04-23 11:51:10 +01:00 |
|
Simone Carletti
|
5a8e6aee62
|
Bug 859234 - Add AWS Elastic Beanstalk to PSL. r=gerv.
|
2013-04-23 11:49:36 +01:00 |
|
Mike Shal
|
24b4056720
|
Bug 846634 - Part 2: Move EXPORTS to moz.build; r=joey
|
2013-04-16 15:24:43 -04:00 |
|
Simon Montagu
|
26e7d37aeb
|
Exclude U+30FB KATAKANA MIDDLE DOT from the non-recommended characters that force IDN labels to be displayed as punycode. Bug 857490, r=jfkthame
|
2013-04-09 05:47:03 -07:00 |
|
Patrick McManus
|
afd013ce0b
|
bug 857291 - fix 807678 regression of DNS::GetCanonicalName r=josh
|
2013-04-08 12:02:41 -04:00 |
|
Simon Montagu
|
9d48c4ca6d
|
Exclude U+30FB KATAKANA MIDDLE DOT from the non-recommended characters that force IDN labels to be displayed as punycode. Bug 857490, r=jfkthame
|
2013-04-08 01:36:54 -07:00 |
|
Simon Montagu
|
e8db6078f1
|
Disable the check for mixed Simplified and Traditional Chinese characters when determining whether to display IDN labels as unicode or punycode. Bug 857481, r=honzab
|
2013-04-08 01:36:52 -07:00 |
|
Simone Carletti
|
c053a2777d
|
Bug 857497 - reorder private part of PSL into alphabetical order by company. r=gerv.
--HG--
extra : rebase_source : 9906cf4865a2113b127893bdd707de36a192f4c4
|
2013-04-04 20:34:53 +01:00 |
|
Kyle Machulis
|
f5e3aadf0b
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
|
2013-04-01 11:36:59 -07:00 |
|
Kyle Machulis
|
d2b6e6e01a
|
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
|
2013-03-29 15:12:58 -07:00 |
|
Kyle Machulis
|
5663b98bc5
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
--HG--
extra : rebase_source : 004a756492323e1a049586e85b3be5037159df20
|
2013-03-29 13:56:18 -07:00 |
|
Simone Carletti
|
80fbfac60a
|
Bug 853810 - Add .POST to PSL. r=gerv.
|
2013-03-29 16:19:05 +00:00 |
|
Simone Carletti
|
5892393015
|
Bug 853805 - Add .CW to PSL. r=gerv.
|
2013-03-29 14:44:17 +00:00 |
|
Honza Bambas
|
c59818af3e
|
Bug 729182 - Implement visual event tracer, part1 - instrumentation, r=mcmanus,bz,ehsan,bsmedberg,michal
|
2013-03-28 18:38:04 +01:00 |
|
Simone Carletti
|
4029e914d5
|
Bug 849816 - Add nyc.mn to PSL. r=gerv.
|
2013-03-28 17:11:14 +00:00 |
|
Simone Carletti
|
ddd3f2b113
|
Bug 854388 - Add AWS CloudFront to PSL. r=gerv.
|
2013-03-28 17:10:22 +00:00 |
|
Simone Carletti
|
df0f4a28e0
|
Bug 854463 - Add AWS S3 to PSL. r=gerv.
|
2013-03-28 17:09:36 +00:00 |
|
Simone Carletti
|
8e3b0d3325
|
Bug 855715 - Add AWS ELB to PSL. r=gerv.
|
2013-03-28 17:08:06 +00:00 |
|
Mike Shal
|
f290401a73
|
Bug 852534 - Remove GRE_MODULE from Makefile.in; r=gps
|
2013-03-21 08:41:00 -07:00 |
|
Mike Shal
|
ea1d9b8ba7
|
Bug 844654 - Part 2: Move MODULE to moz.build; rs=gps
|
2013-03-19 11:47:00 -07:00 |
|
Bobby Holley
|
c7bd2a9c9b
|
Bug 850245 - Remove Off-Main-Thread XPCWrappedJS refcounting from DNSListenerProxy. r=mcmanus
|
2013-03-18 20:39:53 -07:00 |
|
Mike Shal
|
2eb7c496cb
|
Bug 818246 - Part 7: Move XPIDL_MODULE to moz.build; rs=gps
|
2013-03-11 22:00:00 -07:00 |
|
Gregory Szorc
|
629b5d86c6
|
Bug 818246 - Part 4: Move XPIDLSRCS into moz.build (auto); rs=glandium
This is the result of running
|mach mozbuild-migrate --list XPIDLSRCS SDK_XPIDLSRCS XPIDL_SOURCES| and
reverting xpcom/sample/*.
|
2013-03-12 10:17:46 -07:00 |
|
Philip Chee
|
b035f7e238
|
bug 722299 followup: VS2008 bustage fix for Bug 722299 Implement new IDN Unicode display algorithm. r=honza.b
|
2013-03-02 20:30:30 +08:00 |
|
Simon Montagu
|
3db2434df6
|
Remove network.enableIDN pref. Bug 842282, r=honza.b
|
2013-03-03 18:36:37 +02:00 |
|
Simon Montagu
|
2acaa0502a
|
Add a pref to disable the IDN whitelist. Bug 722299, r=honza.b
|
2013-03-01 03:56:44 -08:00 |
|
Simon Montagu
|
4ae83c2e4b
|
New algorithm for when to display IDNs as Unicode. Bug 722299, r=honza.b
|
2013-03-01 03:56:44 -08:00 |
|
Ryan VanderMeulen
|
2f8259daf4
|
Backed out 4 changesets (bug 722299) for B2G mochitest failures on a CLOSED TREE.
|
2013-02-28 20:44:53 -05:00 |
|
Simon Montagu
|
d1f3e7f7fc
|
Add a pref to disable the IDN whitelist. Bug 722299, r=honza.b
|
2013-02-28 14:04:48 -08:00 |
|
Simon Montagu
|
cc94daa8b0
|
New algorithm for when to display IDNs as Unicode. Bug 722299, r=honza.b
|
2013-02-28 14:04:48 -08:00 |
|
Gregory Szorc
|
cb829ec2a0
|
Bug 784841 - Part 18z: Convert /netwerk; f=Ms2ger rs=ted
|
2013-02-25 12:47:23 -08:00 |
|
Simone Carletti
|
062c7735c1
|
Bug 841733 - update PSL for .id. r=gerv.
|
2013-02-15 15:43:06 +00:00 |
|
Josh Aas
|
3e151f5e6d
|
Bug 826238: Convert DNS expiration tracking to TimeStamp/TimeDuration. r=sworkman
|
2013-02-14 09:03:51 -06:00 |
|
Masatoshi Kimura
|
35136d8877
|
Bug 827032 - Enable FAIL_ON_WARNINGS on MSVC in netwerk/. r=jduell
|
2013-02-08 20:49:30 +09:00 |
|
Mounir Lamouri
|
f249ee5c89
|
Bug 823175 - Add a method to return the next sub domain of a given host in nsIEffectiveTLDService. r=bz
|
2013-02-04 17:59:49 +00:00 |
|
Honza Bambas
|
fa016d99e0
|
Bug 725587 - Firefox jumps randomly from IPv6 to IPv4 and vice versa in dual-stack environment, r=mcmanus
|
2013-01-29 23:49:35 +01:00 |
|
Ryan VanderMeulen
|
2a64398f56
|
Backed out changeset 0aea65518be3 (bug 725587) for bustage.
|
2013-01-29 17:01:10 -05:00 |
|
Honza Bambas
|
53dd56eac2
|
Bug 725587 - Firefox jumps randomly from IPv6 to IPv4 and vice versa in dual-stack environment, r=mcmanus
|
2013-01-29 22:44:58 +01:00 |
|
Honza Bambas
|
39049ba49c
|
Backout of changeset 816f076c2c15
|
2013-01-29 22:26:47 +01:00 |
|
Honza Bambas
|
d1252ed2ea
|
Bug 725587 - Firefox jumps randomly from IPv6 to IPv4 and vice versa in dual-stack environment, r=mcmanus
|
2013-01-29 22:05:42 +01:00 |
|
Masatoshi Kimura
|
18092c2800
|
Bug 825501 - Remove IPv4 records manually because PR_GetAddrInfoByName dislike PR_AF_INET6. r=honzab
|
2013-01-25 08:30:12 +09:00 |
|
Patrick McManus
|
724b384ac7
|
bug 804605 - backout 766973 767158 785050 r=backout a=akeybl
|
2013-01-22 11:59:01 -05:00 |
|
Gervase Markham
|
d7ce0d34bb
|
Bug 888307 - remove extraneous dots which cause test failures. a=nonlibxul.
|
2013-01-22 15:05:15 +00:00 |
|
Simone Carletti
|
4115503bdb
|
Bug 833307 - update PSL for .tz. r=gerv; a=nonlibxul.
|
2013-01-22 13:58:40 +00:00 |
|
Chris Peterson
|
f456453bfd
|
Bug 829685 - Remove #include "prtypes.h" from some files that no longer use PR types. r=ehsan
|
2013-01-10 08:19:36 -08:00 |
|
Neil Rashbrook
|
6888b021e7
|
Bug 826455 Expose more NetAddr functions to script r=biesi,josh
|
2013-01-10 18:44:17 +00:00 |
|
Honza Bambas
|
2bda0b1509
|
Backout bug 725587, r=mcmanus
|
2013-01-03 17:43:51 +01:00 |
|
Josh Aas
|
b8796703ff
|
Bug 825492: Fix IPv6 DNS lookups on Windows. r=sworkman
|
2013-01-02 17:40:18 -05:00 |
|
Josh Aas
|
711f00ce9a
|
Bug 825275: Fix DNS cache enumerator crash. r=sworkman
|
2013-01-02 16:46:27 -05:00 |
|
Jacek Caban
|
a3462caef5
|
Bug 807678 - fixed mingw cross compilation on case-sensitive OSes
|
2013-01-02 18:25:32 +01:00 |
|
Masatoshi Kimura
|
ecc812a3c0
|
Bug 824247 - Part 3: Disable FAIL_ON_WARNINGS on not-yet-warning-free directories on MSVC. r=ted
|
2013-01-03 00:56:38 +09:00 |
|
Nicholas Nethercote
|
b6939f2c42
|
Bug 819819 (part 2) - Remove |name| from NS_MEMORY_REPORTER_MALLOC_SIZEOF_FUN. r=jlebar.
--HG--
rename : dom/tests/mochitest/localstorage/test_localStorageQuotaPrivateBrowsing_perwindowpb.html => dom/tests/mochitest/localstorage/test_localStorageQuotaPrivateBrowsing.html
rename : toolkit/components/places/tests/browser/browser_favicon_privatebrowsing_perwindowpb.js => toolkit/components/places/tests/browser/browser_favicon_privatebrowsing.js
extra : rebase_source : 557cc60522970ce7eea3b006d357284d9b4694c4
|
2012-12-23 16:59:51 -08:00 |
|
Josh Aas
|
031cfa7598
|
Bug 807678: Don't proliferate NSPR DNS types beyond the host resolver itself. Make it possible to easily hook up other host resolvers. r=sworkman
|
2012-12-23 16:08:43 -05:00 |
|
Honza Bambas
|
08913e2c66
|
Bug 725587 - Firefox jumps randomly from IPv6 to IPv4 and vice versa in dual-stack environment, r=mcmanus
|
2012-12-21 18:50:26 +01:00 |
|
Josh Aas
|
9a4cf133f0
|
Back out fix for bug 807678 again, cset ec4e88c2c77a.
|
2012-12-20 17:39:30 -05:00 |
|
Patrick McManus
|
0969482975
|
bug 807441 increase stickiness of dns choices r=josh
|
2012-12-20 15:51:11 -05:00 |
|
Josh Aas
|
66519055f4
|
Bug 807678: Don't proliferate NSPR DNS types beyond the host resolver itself. Make it possible to easily hook up other host resolvers. r=sworkman
|
2012-12-20 14:47:07 -05:00 |
|
Simone Carletti
|
b743a52a61
|
Bug 822238 - add global rule for .py and remove bogus exceptions. r=gerv.
|
2012-12-20 14:03:52 +00:00 |
|
Ed Morley
|
c606bc83dc
|
Backout 744b40b75241 (bug 807678) on suspicion of causing Win debug xpcshell timeouts on a CLOSED TREE
|
2012-12-14 13:00:19 +00:00 |
|
Josh Aas
|
e5b429383c
|
Bug 807678: Don't proliferate NSPR DNS types beyond the host resolver itself. Make it possible to easily hook up other host resolvers. r=sworkman
|
2012-12-13 09:18:33 -05:00 |
|
Valentin Gosu
|
fddc917df4
|
Bug 783205 - Networking Dashboard. r=mcmanus, r=jorendorff, sr=biesi
|
2012-12-10 09:13:55 -05:00 |
|
Gervase Markham
|
8031f608da
|
Bug 797147 - Update PSL for .UK. Temporary reversion of part of change until
more clarity can be obtained on intent.
|
2012-11-09 13:33:40 +00:00 |
|
Nicholas Nethercote
|
bb913c3d1a
|
Bug 802894 - Add a memory reporter for nsEffectiveTLDService. r=jduell.
--HG--
extra : rebase_source : 32cdfbf060c963d6a16875af406949b8eef50453
|
2012-10-19 05:07:13 -07:00 |
|
Josh Aas
|
fcf3dd7c7c
|
Bug 805425: Fix shutdown crash that can happen when doing DNS logging. r=sworkman
|
2012-10-26 08:12:53 -04:00 |
|
Gervase Markham
|
775395a5b6
|
Bug 757367 - Add !teledata.mz to PSL. r=weppos.
|
2012-10-25 11:02:22 +01:00 |
|
Gervase Markham
|
c2ac4e7313
|
Bug 791770 - Fix csiro.au entry in PSL. r=weppos.
|
2012-10-25 11:01:58 +01:00 |
|
Simone Carletti
|
3abf58a0cf
|
Bug 805367 - PSL changes for Google private domains. r=gerv.
|
2012-10-25 11:01:30 +01:00 |
|
Simone Carletti
|
ec5ab23ea1
|
Bug 791117 - Addition to the public suffix list (betainabox.com). r=gerv.
|
2012-10-25 11:00:42 +01:00 |
|
Simone Carletti
|
7f607ebec3
|
Bug 805370 - PSL changes for Red Hat private domains. r=gerv.
|
2012-10-25 11:00:04 +01:00 |
|
Simone Carletti
|
aa8cb409c5
|
Bug 779834 - Update .py entry in PSL. r=gerv.
|
2012-10-25 10:58:58 +01:00 |
|
Gervase Markham
|
0989de9ddf
|
Bug 802563 - update PSL for .gt. r=weppos.
|
2012-10-24 11:42:41 +01:00 |
|
Andrew Quartey
|
b50ced0c60
|
Bug 792581 - part 19: Replace LL_I2L macro with int64_t cast. r=ehsan
|
2012-10-12 13:29:11 -04:00 |
|
Andrew Quartey
|
6d6e443bea
|
Bug 792581 - part 16: Replace LL_L2UI macro with uint32_t cast. r=ehsan
|
2012-10-12 13:29:11 -04:00 |
|
Simone Carletti
|
e9a7c94430
|
Bug 790962 - update PSL for dreamhosters.com. r=gerv.
|
2012-10-12 16:24:05 +01:00 |
|
Simone Carletti
|
8b85a82395
|
Bug 797147 - update PSL for .uk. r=gerv.
|
2012-10-12 16:23:14 +01:00 |
|
Simone Carletti
|
f97ede2b13
|
Bug 761769 - Update PSL for .ve. Take 2. r=gerv.
|
2012-10-05 14:28:00 +01:00 |
|
Ed Morley
|
0db806f159
|
Backout 953079e94edd (bug 791769) for xpcshell failures
|
2012-10-05 11:59:25 +01:00 |
|
Simone Carletti
|
8e3ae7614c
|
Bug 797787 - Update CentralNic submission date in PSL and make list alphabetical. r=gerv.
|
2012-10-05 11:10:50 +01:00 |
|
Simone Carletti
|
70a6e3acae
|
Bug 791769 - Update PSL for .ve. r=gerv.
|
2012-10-05 11:09:26 +01:00 |
|
Andrew Quartey
|
52003ca06d
|
Bug 792581 - part 12: Replace LL_DIV with division operator. r=ehsan
|
2012-10-05 01:05:28 -04:00 |
|
Simone Carletti
|
8c8aaac6dc
|
Bug 794882 - Add hu.net to PSL. r=gerv.
|
2012-10-02 12:59:31 +01:00 |
|
Josh Aas
|
34a62cb9cc
|
Bug 766973: Don't allow synchronous DNS queries from the main thread. r=sworkman
|
2012-09-29 00:50:59 -04:00 |
|
Patrick McManus
|
75a4766433
|
bug 507578 - disable dns prefetch in presence of active proxy r=jduell
|
2012-09-14 16:27:46 -04:00 |
|
Ehsan Akhgari
|
70ba385729
|
Bug 792502 - Kill the FunctionTimer code; r=vlad
|
2012-09-19 16:59:38 -04:00 |
|
Adam Dane [:hobophobe]
|
fe6d81410d
|
Bug 87717 - Allow offline mode to connect to loopback r=mcmanus sr=cbiesinger
|
2012-09-17 18:45:10 -05:00 |
|
Ed Morley
|
51dcc7dff7
|
Backout 6d71ff5b4b36 (bug 347307), 75a3c47a3fe7 (bug 507578), 828f91de7143 (bug 769764) for near permaorange OS X 10.8 leaks
|
2012-09-17 16:54:09 +01:00 |
|
Patrick McManus
|
44a98739c1
|
bug 507578 - disable dns prefetch in presence of active proxy r=jduell
|
2012-09-14 16:27:46 -04:00 |
|
Simone Carletti
|
61013a65ed
|
Bug 790635 - Add eco.br to PSL. r=gerv.
|
2012-09-14 14:58:47 +01:00 |
|
Ed Morley
|
2ee5369324
|
Backout 3182f9d08c2d (bug 347307), 2a30593cca79 (bug 507578), b87b27f5a417 (bug 769764) for m-oth permaorange in browser_463205.js
|
2012-09-13 22:42:29 +01:00 |
|
Patrick McManus
|
055e38ba48
|
bug 507578 - disable dns prefetch in presence of active proxy r=jduell
|
2012-09-13 15:22:56 -04:00 |
|
Simone Carletti
|
dc5e13e44d
|
Bug 772069 - Update .uy entry in PSL. r=gerv.
|
2012-09-13 16:03:23 +01:00 |
|
Simone Carletti
|
e1ece25cdf
|
Bug 760447 - Update .ua entry in PSL. r=gerv.
|
2012-09-13 16:02:38 +01:00 |
|
Nathan Froyd
|
f72164c999
|
Bug 704848 - reduce space required by nsEffectiveTLDService with more preprocessing; r=jduell
|
2012-09-11 07:42:23 -04:00 |
|
Randell Jesup
|
29ac5c0b8c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Valentin Gosu
|
cbd4d69d24
|
Bug 786359 - Add missing ifndef/endif to nsDNSService2.h. r=mcmanus
|
2012-08-28 20:24:06 -04:00 |
|
Valentin Gosu ext:(%2C%20Jason%20Duell%20%3Cjduell.mcbugs%40gmail.com%3E%2C%20Ms2ger%20%3CMs2ger%40gmail.com%3E)
|
79b6b7fa0b
|
Bug 745296 - Enable FAIL_ON_WARNINGS in more of /netwerk r=jduell
|
2012-08-25 11:19:00 -07:00 |
|
Ehsan Akhgari
|
2962d2eed1
|
Bug 579517 - Part 5: Add missing StandardInteger.h #includes where needed; r=bsmedberg
Landing on a CLOSED TREE
|
2012-08-08 17:08:17 -04:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Aryeh Gregor
|
982100775b
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Ms2ger
|
331accfcb4
|
Bug 780387 - Part b: Stop using PRIntn; r=bsmedberg
|
2012-08-09 09:09:40 +02:00 |
|
Mike Hommey
|
c1b35e7b2a
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Josh Aas
|
9324d7be12
|
Bug 774271: Improve DNS logging. r=sworkman
|
2012-07-16 18:37:28 -04:00 |
|
Josh Aas
|
4880d7e328
|
Bug 771489: Use standard threadsafe refcounting in host resolver. r=sworkman
|
2012-07-10 10:14:01 -04:00 |
|
Gervase Markham
|
90215374a1
|
Bug 763208 - Update .jp entry in PSL.
|
2012-07-04 16:08:35 +01:00 |
|
Simone Carletti
|
0e2f91f8e2
|
Bug 767700 - fix line endings to be consistent. r=gerv.
|
2012-06-25 18:11:45 +01:00 |
|