nova proba

Ethernet/EthernetSetup.h

Committer:
Bosko Lekovic
Date:
2021-01-18
Revision:
28:49bafc8bb056
Parent:
21:2232f5a34eb4

File content as of revision 28:49bafc8bb056:

#ifndef ETHERNETSETUP_H
#define ETHERNETSETUP_H

#include "EthernetInterface.h"
#include "clubbing.h"


struct S_EthernetAddress
{
  char ip[16];
  char mask[16];
  char gate[16];
 // int port;    
};
//
//struct S_EthernetAddress_Remote
//{
//  char ip[16];
//  int port;   
//};



struct S_net
{
 struct S_EthernetAddress *ps_ea;
 EthernetInterface *p_eth;
};


bool ethernet_setup( void );

int getEthernetStatus( void );

void ethCancel( void );


#endif