📄 client.h
字号:
/**C++ tcp/ip and udp/ip library and example programmCopyright (C) 2002 Marcin Caban 'Cabko' and Borys Wisniewski 'Boria'This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, orany later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.http://www.gnu.org/Marcin Cabane-mail: cabko@polsl.gliwice.plphone: +48 501 452 123Borys Wisniewskie-mail: boria@polsl.gliwice.plphone: +48 503 065 996*/#include "tcpip.h"/** Class for sending/reciving data from/to %server. Implements network %client. \author Marcin Caban \date Thu Jan 17 01:41:18 2002*/class client : public tcpip{ public:/** Default constructor. Initialize variables. \author Marcin Caban \date Thu Jan 17 01:41:18 2002*/ client ();/** Default destructor. Free any allocated momory. \author Marcin Caban \date Thu Jan 17 01:41:18 2002*/ ~client (); protected:/** Returns last recived data. \return recived string \author Marcin Caban \date Thu Jan 17 01:41:18 2002*/ char* get_recived();/** Sends data (string) to the %server. \param host hostname or IP address of the %server \param service port number of the %server \param packet a string to send \author Marcin Caban \date Thu Jan 17 01:41:18 2002*/ void send (char* host, char* service, char* packet);/** Sends data (string) to the %server, waits for response from this %server and then recives it. \param host hostname or IP address of the %server \param service port number of the %server \param packet a string to send \return "true" if everything is OK or "false" if there is an error \bug Timeout doesn't seem to work correctly. \author Marcin Caban \date Thu Jan 17 01:41:18 2002*/ bool recive (char* host, char* service, char* packet); private:/** Last recived string. Stores last recived data from a %server.*/ char* recived;};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -