12345678910111213141516171819202122232425 |
- //
- // PQBridgeObject.h
- // PQSpeed
- //
- // Created by SanW on 2020/8/20.
- // Copyright © 2020 BytesFlow. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #include <ifaddrs.h>
- #include <arpa/inet.h>
- #include <net/if.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PQBridgeObject : NSObject
- + (NSString *)getByteRate;
- + (long long) getInterfaceBytes;
- + (NSString *)formatNetWork:(long long int)rate;
- + (NSString *)base64Md5ForFilePath:(NSString *)filePath;
- @end
- NS_ASSUME_NONNULL_END
|