10 lines
210 B
C
10 lines
210 B
C
#ifndef __AUTHENTICATION_H
|
|
#define __AUTHENTICATION_H
|
|
|
|
#include "generic/includes.h"
|
|
|
|
// 鉴权接口。内存需要释放
|
|
char *ifly_authentication(char *host_name, char *host, char *path, int retry);
|
|
|
|
#endif
|