~ubuntu-branches/ubuntu/wily/trafficserver/wily

« back to all changes in this revision

Viewing changes to proxy/hdrs/URL.h

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2012-12-17 22:28:16 UTC
  • mfrom: (5.1.8 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121217222816-7xwjsx5k76zkb63d
Tags: 3.2.0-1ubuntu1
* Revert FreeBSD strerror_r() fixes that give errors with glibc 2.16.
* Apply patch from Konstantinos Margaritis to define barriers on ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
 
84
84
  // Sanity Check Functions
85
85
  void check_strings(HeapCheck *heaps, int num_heaps);
 
86
 
 
87
  // The original (unparsed) request
 
88
  const char *the_request;
 
89
  uint16_t the_request_len;
86
90
};
87
91
 
88
92
 
205
209
 
206
210
char *url_unescapify(Arena *arena, const char *str, int length);
207
211
 
 
212
void unescape_str(char *&buf, char *buf_e, const char *&str, const char *str_e, int &state);
 
213
void unescape_str_tolower(char *&buf, char *end, const char *&str, const char *str_e, int &state);
 
214
 
 
215
 
208
216
inline int
209
217
url_canonicalize_port(int type, int port)
210
218
{