f806c5829b
* pre-commit: Update and enable clang-format check There is newer version from clang-format so use that. We do not yet want 18 as that is little bit too new. * Format some thing by hand which clang-format "breaks" Clang-format will format some things little bit off in some cases. Format some things by hand so we get cleaner end result. * Run clang-format with ``` pre-commit run --all-files clang-format ``` We have already in previously checked places where clang-format does not make good format and ignored those (hopefully most of the things). --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
39 lines
770 B
C
39 lines
770 B
C
/**************************************************************************
|
|
*
|
|
* Copyright (C) 2012 Steve Karg <skarg@users.sourceforge.net>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*********************************************************************/
|
|
|
|
#ifndef NET_H
|
|
#define NET_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include "lwip/def.h"
|
|
#include "lwip/udp.h"
|
|
#include "lwip/memp.h"
|
|
#include "netif/etharp.h"
|
|
#include "lwip/dhcp.h"
|
|
#include "ethernetif.h"
|
|
#include "lwip/inet.h"
|
|
|
|
/* members are in network byte order */
|
|
struct sockaddr_in {
|
|
u8_t sin_len;
|
|
u8_t sin_family;
|
|
u16_t sin_port;
|
|
struct in_addr sin_addr;
|
|
char sin_zero[8];
|
|
};
|
|
|
|
struct sockaddr {
|
|
u8_t sa_len;
|
|
u8_t sa_family;
|
|
char sa_data[14];
|
|
};
|
|
|
|
#endif
|