VLCPlexParser.h 807 B

1234567891011121314151617181920
  1. /*****************************************************************************
  2. * VLCPlexParser.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2014-2019 VideoLAN. All rights reserved.
  6. *
  7. * Authors: Pierre Sagaspe <pierre.sagaspe # me.com>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. @interface VLCPlexParser : NSObject
  13. - (NSArray *)PlexMediaServerParser:(NSString *)adress port:(NSNumber *)port navigationPath:(NSString *)navPath authentification:(NSString *)auth error:(NSError *__autoreleasing *)error;
  14. - (NSArray *)PlexExtractDeviceInfo:(NSData *)data;
  15. - (NSString *)PlexExtractToken:(NSData *)data;
  16. @end