mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
13 lines
273 B
C
13 lines
273 B
C
|
/*
|
||
|
* null-socket.c: provide a null implementation of any Socket vtable
|
||
|
* method that might otherwise need to be reimplemented in multiple
|
||
|
* places as a no-op.
|
||
|
*/
|
||
|
|
||
|
#include "putty.h"
|
||
|
|
||
|
SocketEndpointInfo *nullsock_endpoint_info(Socket *s, bool peer)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|