/usr/include/GNUstep/NGHttp/NGHttpHeaderFields.h is in libsope-dev 2.2.17-1build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | /*
Copyright (C) 2000-2005 SKYRIX Software AG
This file is part of SOPE.
SOPE is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with SOPE; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#ifndef __NGHttp_NGHttpHeaderFields_H__
#define __NGHttp_NGHttpHeaderFields_H__
#import <Foundation/NSObject.h>
@class NSString, NSHost, NSDate, NSDictionary;
@class NGInternetSocketAddress;
/*
Value field that occures in the HTTP 'Host' header field.
Looks like this: 'Host: trex@skyrix.com:80'
*/
@interface NGHttpHostHeaderField : NSObject
{
@protected
NSString *hostName;
int port;
}
- (id)initWithString:(NSString *)_value;
// accessors
- (NSString *)hostName;
- (int)port;
// advanced conversions
- (NGInternetSocketAddress *)socketAddress;
- (NSHost *)host;
// description
- (NSString *)stringValue;
@end
/*
Value field that occures in the HTTP 'accept-charset' header field.
Looks like this: 'accept-charset: iso-8859-1,*,utf-8'
*/
@interface NGHttpCharsetHeaderField : NSObject
{
NSArray *charsets;
BOOL containsWildcard;
}
- (id)initWithArray:(NSArray *)_charsetArray;
- (id)initWithString:(NSString *)_value;
// accessors
- (NSEnumerator *)charsets;
- (BOOL)containsCharset:(NSString *)_setName;
@end
/*
Value field that occures in the HTTP 'accept' header field.
Looks like this: 'accept: image/gif, image/x-xbitmap, image/jpeg, wildcard'
*/
@interface NGHttpTypeSetHeaderField : NSObject
{
NSArray *types;
}
- (id)initWithArray:(NSArray *)_typeArray;
// accessors
- (NSEnumerator *)types;
- (BOOL)containsMimeType:(NGMimeType *)_type;
@end
/*
Value field that occures in the HTTP 'accept-language' header field.
*/
@interface NGHttpLanguageSetHeaderField : NSObject
{
NSArray *languages;
}
- (id)initWithArray:(NSArray *)_langArray;
// accessors
- (NSEnumerator *)languages;
- (BOOL)containsLanguage:(NSString *)_language;
@end
/*
Value field that occures in the HTTP 'user-agent' header field.
Looks like this: 'user-agent: Mozilla/4.5b2 [en] '
*/
@interface NGHttpUserAgent : NSObject
{
@protected
NSString *value;
NSString *browser;
char majorVersion;
char minorVersion;
}
- (id)initWithString:(NSString *)_value;
// browsers
- (BOOL)isMozilla;
- (BOOL)isInternetExplorer;
- (int)majorVersion;
- (int)minorVersion;
@end
/*
Value field that occures in the HTTP 'connection' header field.
Looks like this: 'connection: Keep-Alive'
*/
@interface NGHttpConnectionHeaderField : NSObject
{
@protected
BOOL close;
BOOL keepAlive;
BOOL isTE;
}
- (id)initWithString:(NSString *)_value;
// accessors
- (BOOL)keepAlive;
@end
/*
Value field that occures in the HTTP 'authorization' header field.
Looks like this: 'authorization: Basic aGVsZ2U6ZG9vZg=='
(class cluster)
*/
@interface NGHttpCredentials : NSObject
{
NSString *scheme;
NSData *credentials;
}
+ (id)credentialsWithString:(NSString *)_cred;
+ (id)credentialsWithScheme:(NSString *)_scheme
credentials:(NSData *)_credentials;
// accessors
- (NSString *)scheme;
- (NSData *)credentials;
- (NSString *)userName;
- (NSString *)password;
// description
- (NSString *)stringValue;
@end
/*
Value field that occures in the HTTP 'www-authenticate' header field.
Looks like this: 'www-authorization: Basic realm="SKYRIX"'
*/
@interface NGHttpChallenge : NSObject
{
NSString *scheme;
NSDictionary *parameters;
}
+ (id)basicChallengeWithRealm:(NSString *)_realm;
- (id)initWithScheme:(NSString *)_scheme realm:(NSString *)_realm;
// accessors
- (NSString *)scheme;
- (void)setRealm:(NSString *)_realm;
- (NSString *)realm;
// description
- (NSString *)stringValue;
@end
#endif /* __NGHttp_NGHttpHeaderFields_H__ */
|