📄 server.cc
字号:
/**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 <iostream.h>#include <string.h>#include <stdlib.h>#include <assert.h>#include <unistd.h>#include "const.h"#include "server.h"extern int errno;extern char* sys_errlist[];server :: server (char* service) : tcpip (){ recived = NULL; sock = passiveUDP (service);}server :: ~server (){ if (recived != NULL) delete recived; close (sock);}void server :: answer (char* packet){ (void) sendto (sock, packet, strlen (packet), 0, (struct sockaddr *) &addr, addr_len);}bool server :: listenUDP (){ char buff[2048]; buff[1] = '\0'; int length = recvfrom (sock, buff, sizeof (buff), 0, (struct sockaddr *) &addr, &addr_len); if (length < 0) { cerr << _NET_ERR_ << "listen failed: " << sys_errlist [errno] << "\n"; return false; } buff[length] = '\0'; if (recived != NULL) delete recived; recived = NULL; recived = new char [length+1]; assert (recived != NULL); strcpy (recived, buff); return true;}bool server :: listenTCP (){ char buff[2048]; buff[1] = '\0'; int length = recvfrom (sock, buff, sizeof (buff), 0, (struct sockaddr *) &addr, &addr_len); if (length < 0) { cerr << _NET_ERR_ << "listen failed: " << sys_errlist [errno] << "\n"; return false; } buff[length] = '\0'; if (recived != NULL) delete recived; recived = NULL; recived = new char [length+1]; assert (recived != NULL); strcpy (recived, buff); return true;}char* server :: get_recived (){ return recived;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -