~ubuntu-branches/ubuntu/precise/polygraph/precise

« back to all changes in this revision

Viewing changes to src/runtime/polyErrors.cc

  • Committer: Bazaar Package Importer
  • Author(s): Dmitry Kurochkin
  • Date: 2011-04-05 19:34:13 UTC
  • mfrom: (1.1.3 upstream) (3.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20110405193413-k33kjf0nrdl3hzga
Tags: 4.3.2-1
* New upstream bugfix release. Changes include:
  - fix build with OpenSSL libraries with disabled SSLv2 protocol
  - cleanup copyright preamble in source code files
* Switch from CDBS to debhelper:
  - debian/rules: based on rules.tiny from debhelper examples
  - debian/control: drop build-dependency on cdbs and update debhelper
    build-dependency to version 8
  - debian/compat: set debhelper compatibility level to 8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
/* Web Polygraph       http://www.web-polygraph.org/
3
 
 * (C) 2003-2006 The Measurement Factory
 
3
 * Copyright 2003-2011 The Measurement Factory
4
4
 * Licensed under the Apache License, Version 2.0 */
5
5
 
6
6
#include "base/polygraph.h"
63
63
const Error errTagnameValue = Error::Add("found <attr=value> tag; missing tagname?");
64
64
const Error errBadEmbedUri = Error::Add("bad URI in content <tag> attribute");
65
65
const Error errTooManyWaitXact = Error::Add("too many postponed xactions");
 
66
const Error errXactLifeTimeExpired = Error::Add("xaction lifetime expired");
66
67
const Error errTimingDrift = Error::Add("internal timers may be getting behind");
67
68
const Error errSiblingViolation = Error::Add("violation of a sibling relationship");
68
69
const Error errMake302Found = Error::Add("``302 Found'' reply generation failed");
110
111
const Error errOriginAuthAllowed = Error::Add("origin authentication failed: access allowed with invalid credentials");
111
112
const Error errAuthBug = Error::Add("internal authentication state error");
112
113
 
 
114
const Error errSocksRead = Error::Add("SOCKS read failure");
 
115
const Error errSocksWrite = Error::Add("SOCKS write failure");
 
116
const Error errSocksUnexpectedEof = Error::Add("SOCKS protocol-violating EOF on read");
 
117
const Error errSocksReqDontFit = Error::Add("SOCKS request too big for write buffer");
 
118
const Error errSocksRepDontFit = Error::Add("SOCKS reply too big for read buffer");
 
119
const Error errSocksVersion = Error::Add("unsupported SOCKS version");
 
120
const Error errSocksAuthUserPassVersion = Error::Add("unsupported SOCKS username/password authentication version");
 
121
const Error errSocksAuthUserPassWoutCreds = Error::Add("SOCKS proxy requested Username/Password authentication method but no credentials configured");
 
122
const Error errSocksAuthUnsupported = Error::Add("SOCKS proxy requested unsupported authentication method");
 
123
const Error errSocksAuthInvalid = Error::Add("no acceptable methods were offered to SOCKS proxy");
 
124
const Error errSocksAuthForbidden = Error::Add("SOCKS proxy access forbidden");
 
125
const Error errSocksConnect = Error::Add("SOCKS connect failure");
 
126
 
113
127
const Error errSslCloseTout = Error::Add("non-blocking SSL close operation time out");
114
128
const Error errSslSessionResume = Error::Add("failed to resume an SSL session, continuing anyway");
115
129
const Error errSslIo = Error::Add("SSL I/O failure");