mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
188b292236
keeps the connection to the server alive after the client logs out. When the same user attempts to log in again, the proxy will use the cached username/password pair to authenticate the client, and tie the new client to the old server connection (which was kept alive) PR: 54977 Submitted by: Lasse L. Johnsen Approved by: roberto (mentor)
14 lines
284 B
Plaintext
14 lines
284 B
Plaintext
--- network.c.orig Fri Aug 9 15:24:23 2002
|
|
+++ network.c Mon Jul 28 11:21:26 2003
|
|
@@ -20,9 +20,9 @@
|
|
|
|
|
|
#include <stdio.h>
|
|
+#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
-#include <sys/types.h>
|
|
#include <string.h>
|
|
#include <netdb.h>
|
|
#include <unistd.h>
|