mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 09:57:41 +00:00
9 lines
120 B
C++
9 lines
120 B
C++
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
|
|
int main() {
|
|
struct sockaddr sa;
|
|
sa.sa_len = 0;
|
|
return 0;
|
|
}
|