/* BlinkerCopyright 2011-2014 Stefan Schuermans <stefan@blinkenarea.org>Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.htmla blinkenarea.org project */#include <winsock2.h>#include <stdint.h>#include "NetHost.h"namespace Blinker {/// convert 32 bit unsigned integer from network to host byte orderuint32_t Net2Host32(uint32_t val){return ntohl(val);}} // namespace Blinker