Closed
Bug 132347
Opened 24 years ago
Closed 1 year ago
necko progress "status" codes need not be errors
Categories
(Core :: Networking, defect, P5)
Core
Networking
Tracking
()
RESOLVED
DUPLICATE
of bug 1831272
People
(Reporter: darin.moz, Unassigned)
Details
(Whiteboard: [necko-would-take])
necko progress "status" codes need not be errors.
for example, NS_NET_STATUS_RESOLVING_HOST is defined as:
#define NS_NET_STATUS_RESOLVING_HOST \
NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 3)
but should really be defined as:
#define NS_NET_STATUS_RESOLVING_HOST \
NS_ERROR_GENERATE_SUCCESS(NS_ERROR_MODULE_NETWORK, 3)
having these defined as errors causes problems for nsIWebProgressListener::
onStateChange impls, which need to distinguish progress status from actual errors.
| Reporter | ||
Updated•24 years ago
|
Target Milestone: --- → mozilla1.1beta
| Reporter | ||
Updated•23 years ago
|
Target Milestone: mozilla1.1beta → ---
| Reporter | ||
Comment 2•19 years ago
|
||
-> default owner
Assignee: darin → nobody
QA Contact: benc → networking
Target Milestone: Future → ---
Updated•10 years ago
|
Whiteboard: [necko-would-take]
Comment 3•8 years ago
|
||
Bulk change to priority: https://bugzilla.mozilla.org/show_bug.cgi?id=1399258
Priority: -- → P5
Updated•3 years ago
|
Severity: normal → S3
Comment 4•1 year ago
|
||
Fixed in bug 1831272
You need to log in
before you can comment on or make changes to this bug.
Description
•