#ifndef NTRIP_CLIENT #define NTRIP_CLIENT #include #include #include #include class NTRIPClient { public : Client *_client=0; NTRIPClient( Client *client ); int available(); int read(); bool reqSrcTbl(char* host,int &port); //request MountPoints List serviced the NTRIP Caster bool reqRaw(char* host,int &port,char* mntpnt,char* user,char* psw); //request RAW data from Caster bool reqRaw(char* host,int &port,char* mntpnt); //non user int readLine(char* buffer,int size); }; #endif