Lines Matching defs:server
275 struct sockaddr_un server;
293 bzero((char *)&server,
294 sizeof(server));
295 server.sun_family = AF_UNIX;
369 /* Tell the remote end to do a listen. The server alters the socket */
423 strcpy(server.sun_path,stream_stream_response->unix_path);
433 (struct sockaddr *)&server,
434 sizeof(server)) == INVALID_SOCKET){
436 printf(" path: %s\n",server.sun_path);
705 /* This is the server-side routine for the stream stream test. It is */
1096 struct sockaddr_un server;
1114 bzero((char *)&server,
1115 sizeof(server));
1117 server.sun_family = AF_UNIX;
1175 /* Tell the remote end to do a listen. The server alters the socket */
1227 strcpy(server.sun_path,stream_rr_response->unix_path);
1238 (struct sockaddr *)&server,
1239 sizeof(server)) == INVALID_SOCKET){
1581 struct sockaddr_un server;
1596 bzero((char *)&server,
1597 sizeof(server));
1599 server.sun_family = AF_UNIX;
1659 /* Tell the remote end to set up the data connection. The server */
1662 /* set up, the server just sets up the socket and binds it. */
1692 strcpy(server.sun_path,dg_stream_response->unix_path);
1703 (struct sockaddr *)&server,
1704 sizeof(server)) == INVALID_SOCKET){
2255 struct sockaddr_un server, myaddr_un;
2283 bzero((char *)&server,
2284 sizeof(server));
2285 server.sun_family = AF_UNIX;
2354 /* Tell the remote end to do a listen. The server alters the socket */
2406 strcpy(server.sun_path,dg_rr_response->unix_path);
2428 (struct sockaddr *)&server,
2429 sizeof(server)) == INVALID_SOCKET ) {