Displaying 6 results from an estimated 6 matches for "af_".
Did you mean:
af
2020 Sep 30
4
Graficar una curva de tendencia potencial.
AF_E PS_E
90.838 2.206
83.139 1.751
134.272 3.710
84.043 2.076
105.184 2.788
157.249 3.783
50.280 1.027
96.973 2.355
123.582 3.398
60.417 1.236
123.501 3.315
90.128 1.566
193.783 5.167
116.036 2.994
100.289 2.216
56.943 1.106
102.272 2.692
145.579 3.810
53.105 1.202
127.212 3.061
102.838 2.383
126.352...
2007 Feb 05
1
tunneling support for PF_UNIX sockets
Hi,
I've been planning to develop a support for tunneling between "local_tcp
=> server_AF_UNIX".
This way, every user of server machine, can have:
1. personal address space (if socket is located on personal directory).
Currently one must check assigned local port every time starting a
server (e.g. vncserver), and redirect a local port to "random" remote
port.
2. Added sec...
2006 Jan 17
0
asterisk.ctl limitations
...at-1.10/netcat.c 2006-01-04 22:11:40.000000000 +0200
+++ /tmp/dpep.QmuQvQ/netcat-1.10/netcat.c 2006-01-04 22:17:16.000000000 +0200
@@ -71,6 +71,7 @@
#include <sys/time.h> /* timeval, time_t */
#include <setjmp.h> /* jmp_buf et al */
#include <sys/socket.h> /* basics, SO_ and AF_ defs, sockaddr, ... */
+#include <sys/un.h> /* UNIX-domain sockets */
#include <netinet/in.h> /* sockaddr_in, htons, in_addr */
#include <netinet/in_systm.h> /* misc crud that netinet/ip.h references */
#include <netinet/ip.h> /* IPOPT_LSRR, header stuff */
@@ -87,6 +8...
2007 Jan 06
1
Re: [nut-commits] svn commit r710 - in trunk: . clients server
...=============================================
> --- trunk/clients/upsc.c (original)
> +++ trunk/clients/upsc.c Sat Jan 6 19:39:08 2007
> @@ -25,10 +25,6 @@
>
> #include "upsclient.h"
>
> -/* From IPv6 patch (doesn't seem to be used)
> -static int opt_af = AF_UNSPEC;
> - */
> -
> static void help(const char *prog)
> {
> printf("Network UPS Tools upsc %s\n\n", UPS_VERSION);
>
> Modified: trunk/clients/upsclient.c
> ==============================================================================
> --- trunk/clients/u...
2007 Jan 06
3
Re: [nut-commits] svn commit r708 - in trunk: . clients server
...=============================================
> --- trunk/clients/upsc.c (original)
> +++ trunk/clients/upsc.c Fri Jan 5 21:06:59 2007
> @@ -25,6 +25,10 @@
>
> #include "upsclient.h"
>
> +/* From IPv6 patch (doesn't seem to be used)
> +static int opt_af = AF_UNSPEC;
> + */
> +
> static void help(const char *prog)
> {
> printf("Network UPS Tools upsc %s\n\n", UPS_VERSION);
>
> Modified: trunk/clients/upsclient.c
> ==============================================================================
> --- trunk/clients/u...
2007 Jan 23
2
Re: [nut-commits] svn commit r731
...ups->upserror = UPSCLI_ERR_NOSUCHHOST;
> - return -1;
> + if ((serv = gethostbyname(host)) == (struct hostent *)NULL)
> + {
> + struct in_addr listenaddr;
> +
> + if (!inet_aton(host, &listenaddr) || ((serv = gethostbyaddr(&listenaddr,
> + sizeof(listenaddr), AF_INET)) == (struct hostent *)NULL))
> + {
> + ups->upserror = UPSCLI_ERR_NOSUCHHOST;
> + return -1;
> + }
> }
>
> - if ((ups->fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
> + if ((ups->fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
> + {
> ups->...