20 lines
338 B
C++
20 lines
338 B
C++
#ifndef COPPINO_H
|
|
#define COPPINO_H
|
|
|
|
#include "ipv6.h"
|
|
|
|
namespace coppino {
|
|
const uint8_t LEN = 128;
|
|
extern ipv6::IPv6Addr address;
|
|
/* netmask:
|
|
* no netmask is needed, because everything is sent over TTL UART
|
|
* gateway:
|
|
* the same as above
|
|
*/
|
|
|
|
void handler(void);
|
|
void hexdump(const char* pointer, int len);
|
|
}
|
|
|
|
#endif
|