60e282929f
I'm trying to merge UDPpacketVBuffer and SafeUDPpacketV. Seems pretty messy so far... hopefully this is fruitful.
12 lines
160 B
C
12 lines
160 B
C
#pragma once
|
|
|
|
struct Init_CommonOpts
|
|
{
|
|
const char* host;
|
|
int channel;
|
|
int mtu;
|
|
unsigned short port;
|
|
};
|
|
|
|
void common_GetOpt (int, char**, Init_CommonOpts*);
|