34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
/*
|
|
* JTAG Boundary Scanner
|
|
* Copyright (c) 2008 - 2024 Viveris Technologies
|
|
*
|
|
* JTAG Boundary Scanner 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 3.0 of the License, or (at your option) any later version.
|
|
*
|
|
* JTAG Boundary Scanner 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 version 3 for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with JTAG Boundary Scanners; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/**
|
|
* @file network.h
|
|
* @brief Basic/generic network functions wrapper header.
|
|
* @author Jean-François DEL NERO <Jean-Francois.DELNERO@viveris.fr>
|
|
*/
|
|
|
|
typedef struct genos_tcp_stat_
|
|
{
|
|
#ifdef WIN32
|
|
WSADATA wsaData;
|
|
#endif
|
|
struct sockaddr_in clientService;
|
|
SOCKET m_socket;
|
|
}genos_tcp_stat;
|