RTL8710_SDK_GCC_VERSION/component/common/network/mDNS/mDNS.h
RtlduinoMan 905d81784e GCC SDK RTL8710 basic version (including the window platform cygwin installation and Ubuntu platform Linux Installation routines),
including cross compilation of the installation, compile, link, run, debug, and so on.
SDK implementation of the function:
1, WiFi connection settings (including AP mode and STA mode).
2, peripheral resource control (including GPIO, SPI, UART, IIC, etc.).
3, the user uses the sample method.
2016-09-08 18:11:26 +08:00

26 lines
954 B
C

#ifndef _MDNS_H
#define _MDNS_H
#include <stdint.h>
/* Text Record */
typedef struct _TXTRecordRef_t {
char PrivateData[16];
} TXTRecordRef;
extern void TXTRecordCreate(TXTRecordRef *txtRecord, uint16_t bufferLen, void *buffer);
extern int TXTRecordSetValue(TXTRecordRef *txtRecord, const char *key, uint8_t valueSize, const void *value);
extern void TXTRecordDeallocate(TXTRecordRef *txtRecord);
/* mDNS */
typedef void *DNSServiceRef;
extern int mDNSResponderInit(void);
extern void mDNSResponderDeinit(void);
extern DNSServiceRef mDNSRegisterService(char *name, char *service_type, char *domain, unsigned short port, TXTRecordRef *txtRecord);
extern void mDNSDeregisterService(DNSServiceRef serviceRef);
extern void mDNSUpdateService(DNSServiceRef serviceRef, TXTRecordRef *txtRecord, unsigned int ttl);
extern void mDNSRegisterAllInterfaces(void);
extern void mDNSDeregisterAllInterfaces(void);
#endif /* _MDNS_H */