mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Tidyup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@8143 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
999cd23cc9
commit
2ae159cbfd
6 changed files with 85 additions and 10 deletions
|
@ -269,6 +269,29 @@ NSString *NSConnectionLocalCount;
|
|||
|
||||
NSString *NSConnectionProxyCount;
|
||||
|
||||
/*
|
||||
* Keys for NSURLHandle
|
||||
*/
|
||||
NSString *NSHTTPPropertyStatusCodeKey;
|
||||
|
||||
NSString *NSHTTPPropertyStatusReasonKey;
|
||||
|
||||
NSString *NSHTTPPropertyServerHTTPVersionKey;
|
||||
|
||||
NSString *NSHTTPPropertyRedirectionHeadersKey;
|
||||
|
||||
NSString *NSHTTPPropertyErrorPageDataKey;
|
||||
|
||||
/* These are GNUstep extras */
|
||||
NSString *GSHTTPPropertyMethodKey;
|
||||
|
||||
NSString *GSHTTPPropertyProxyHostKey;
|
||||
|
||||
NSString *GSHTTPPropertyProxyPortKey;
|
||||
|
||||
NSString *GSHTTPBodyKey;
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Setup function called when NSString is initialised.
|
||||
|
@ -475,6 +498,26 @@ GSBuildStrings()
|
|||
= [[SClass alloc] initWithCString: "PortBecameInvalidNotification"];
|
||||
StreamException
|
||||
= [[SClass alloc] initWithCString: "StreamException"];
|
||||
|
||||
NSHTTPPropertyStatusCodeKey
|
||||
= [[SClass alloc] initWithCString: "HTTPPropertyStatusCodeKey"];
|
||||
NSHTTPPropertyStatusReasonKey
|
||||
= [[SClass alloc] initWithCString: "HTTPPropertyStatusReasonKey"];
|
||||
NSHTTPPropertyServerHTTPVersionKey
|
||||
= [[SClass alloc] initWithCString: "HTTPPropertyServerHTTPVersionKey"];
|
||||
NSHTTPPropertyRedirectionHeadersKey
|
||||
= [[SClass alloc] initWithCString: "HTTPPropertyRedirectionHeadersKey"];
|
||||
NSHTTPPropertyErrorPageDataKey
|
||||
= [[SClass alloc] initWithCString: "HTTPPropertyErrorPageDataKey"];
|
||||
|
||||
GSHTTPPropertyMethodKey
|
||||
= [[SClass alloc] initWithCString: "GSHTTPPropertyMethodKey"];
|
||||
GSHTTPPropertyProxyHostKey
|
||||
= [[SClass alloc] initWithCString: "GSHTTPPropertyProxyHostKey"];
|
||||
GSHTTPPropertyProxyPortKey
|
||||
= [[SClass alloc] initWithCString: "GSHTTPPropertyProxyPortKey"];
|
||||
GSHTTPBodyKey
|
||||
= [[SClass alloc] initWithCString: "GSHTTPBodyKey"];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue