2018-11-16 01:30:38 -08:00
|
|
|
//
|
|
|
|
|
// MBIMHTTPUtilities.h
|
|
|
|
|
// kordophoned
|
|
|
|
|
//
|
|
|
|
|
// Created by James Magahern on 11/16/18.
|
|
|
|
|
// Copyright © 2018 James Magahern. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
|
|
NSString* MBIMWebServerFormatRFC822(NSDate *date);
|
2018-11-20 19:57:35 -07:00
|
|
|
NSString* MBIMWebServerFormatISO8601(NSDate *date);
|
2022-08-03 16:52:39 -07:00
|
|
|
|
|
|
|
|
@interface NSDate (MBIMWebServerFormat)
|
|
|
|
|
- (NSString *)RFC822StringValue;
|
|
|
|
|
- (NSString *)ISO8601StringValue;
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
@interface NSString (MBIMWebServerFormat)
|
|
|
|
|
- (NSDate *)RFC822Date;
|
|
|
|
|
- (NSDate *)ISO8601Date;
|
|
|
|
|
@end
|