/usr/include/GNUstep/NGObjWeb/WOMessage.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 | /*
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 __NGObjWeb_WOMessage_H__
#define __NGObjWeb_WOMessage_H__
#import <Foundation/NSObject.h>
#import <Foundation/NSString.h>
#include <NGStreams/NGStreamProtocols.h>
/*
WOMessage
Abstract superclass of both, WORequest and WOResponse.
*/
@class NSDictionary, NSArray, NSData, NSMutableData, NSMutableArray;
@class NGMutableHashMap;
@class WOCookie;
@interface WOMessage : NSObject
{
@private
NSString *version;
NSMutableData *content;
NGMutableHashMap *header;
NSDictionary *userInfo;
NSMutableArray *cookies;
NSStringEncoding contentEncoding;
id<NGStream> contentStream;
id domCache;
struct {
BOOL didStartWriting:1; // afterwards no headers may be changed
int reserved:31;
} womFlags;
@public // cached selectors
void (*addChar)(id, SEL, char);
void (*addStr)(id, SEL, NSString *);
void (*addHStr)(id, SEL, NSString *);
void (*addCStr)(id, SEL, const unsigned char *);
void (*addBytesLen)(id, SEL, const unsigned char *, unsigned);
void (*addBytes)(id, SEL, const void *, unsigned);
}
/* accessors */
- (void)setUserInfo:(NSDictionary *)_userInfo;
- (NSDictionary *)userInfo;
/* HTTP */
- (void)setHTTPVersion:(NSString *)_httpVersion;
- (NSString *)httpVersion;
/* cookies (new in WO4) */
- (void)addCookie:(WOCookie *)_cookie;
- (void)removeCookie:(WOCookie *)_cookie;
- (NSArray *)cookies;
/* header */
- (void)setHeader:(NSString *)_header forKey:(NSString *)_key;
- (NSString *)headerForKey:(NSString *)_key;
- (void)setHeaders:(NSArray *)_headers forKey:(NSString *)_key;
- (NSArray *)headersForKey:(NSString *)_key;
- (NSArray *)headerKeys;
- (void)appendHeader:(NSString *)_header forKey:(NSString *)_key;
- (void)appendHeaders:(NSArray *)_headers forKey:(NSString *)_key;
- (void)setHeaders:(NSDictionary *)_headers;
- (NSDictionary *)headers;
- (NSString *)headersAsString;
/* generic content */
- (void)setContent:(NSData *)_data;
- (NSData *)content;
- (void)setContentEncoding:(NSStringEncoding)_encoding;
- (NSStringEncoding)contentEncoding;
+ (void)setDefaultEncoding:(NSStringEncoding)_encoding;
+ (NSStringEncoding)defaultEncoding;
/* structured content */
- (void)appendContentBytes:(const void *)_bytes length:(unsigned)_length;
- (void)appendContentCharacter:(unichar)_c;
- (void)appendContentData:(NSData *)_data;
- (void)appendContentString:(NSString *)_value;
- (void)appendContentCString:(const unsigned char *)_value;
- (void)appendContentHTMLAttributeValue:(NSString *)_value;
- (void)appendContentHTMLString:(NSString *)_value;
- (void)appendContentXMLAttributeValue:(NSString *)_value;
- (void)appendContentXMLString:(NSString *)_value;
@end
@interface WOMessage(Escaping)
/* this escapes '&', '"', '<' and '>' */
+ (NSString *)stringByEscapingHTMLString:(NSString *)_string;
/* this escapes '&', '"', '<', '>', '\t', '\r' and '\n' */
+ (NSString *)stringByEscapingHTMLAttributeValue:(NSString *)_string;
@end
@interface WOMessage(NGObjWebExtensions)
- (NSString *)contentAsString;
- (BOOL)doesStreamContent;
- (NSArray *)validateContent;
@end
@interface WOMessage(DOMXML)
- (void)setContentDOMDocument:(id)_dom;
- (void)appendContentDOMDocumentFragment:(id)_domfrag;
- (id)contentAsDOMDocument;
@end
#endif /* __NGObjWeb_WOMessage_H__ */
|