X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=client_common.c;h=d950d2d744801c721b132cc13b45b10422faf289;hb=b169ef85673c208ff283217e4cde2f5816e69518;hp=1b53f705423556040736a4e70dbd8fc7460a38f2;hpb=8dffec19598a4a0ed77fa082abaf52c8fe66d889;p=paraslash.git diff --git a/client_common.c b/client_common.c index 1b53f705..d950d2d7 100644 --- a/client_common.c +++ b/client_common.c @@ -7,6 +7,7 @@ /** \file client_common.c common functions of para_client and para_audiod */ #include "para.h" +#include "error.h" #include "list.h" #include "sched.h" #include "client.cmdline.h" @@ -17,7 +18,6 @@ #include "string.h" #include "client.cmdline.h" #include "client.h" -#include "error.h" /* * rc4 encrypt data before sending @@ -84,13 +84,13 @@ static int client_connect(struct private_client_data *pcd) if (ret < 0) return ret; /* get new socket */ - ret = get_socket(); + ret = get_stream_socket(AF_INET); if (ret < 0) return ret; pcd->fd = ret; /* init their_addr */ init_sockaddr(&their_addr, pcd->conf.server_port_arg, he); - ret = para_connect(pcd->fd, &their_addr); + ret = PARA_CONNECT(pcd->fd, &their_addr); if (ret < 0) goto err_out; pcd->status = CL_CONNECTED;