]> git.lizzy.rs Git - minetest.git/blobdiff - src/socket.cpp
added dedicated server build without irrlicht
[minetest.git] / src / socket.cpp
index dddc8f36a30339abf7f5ca15bf669342f183661e..f4b8f442943aaf78834569547ab376763a65aef0 100644 (file)
@@ -1,3 +1,22 @@
+/*
+Minetest-c55
+Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along
+with this program; if not, write to the Free Software Foundation, Inc.,
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+*/
+
 #include "socket.h"
 #include "debug.h"
 #include <stdio.h>
@@ -186,7 +205,7 @@ void UDPSocket::Send(const Address & destination, const void * data, int size)
                destination.print();
                dstream<<", size="<<size<<", data=";
                for(int i=0; i<size && i<20; i++){
-                       if(i%2==0) printf(" ");
+                       if(i%2==0) DEBUGPRINT(" ");
                        DEBUGPRINT("%.2X", ((int)((const char*)data)[i])&0xff);
                }
                if(size>20)
@@ -248,7 +267,7 @@ int UDPSocket::Receive(Address & sender, void * data, int size)
                //dstream<<", received="<<received<<std::endl;
                dstream<<", size="<<received<<", data=";
                for(int i=0; i<received && i<20; i++){
-                       if(i%2==0) printf(" ");
+                       if(i%2==0) DEBUGPRINT(" ");
                        DEBUGPRINT("%.2X", ((int)((const char*)data)[i])&0xff);
                }
                if(received>20)