mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Remove unneeded casts.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4647 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
66080034ee
commit
474699f14d
@ -182,10 +182,8 @@ GIOChannel *net_connect_ip(IPADDR *ip, int port, IPADDR *my_ip)
|
|||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
fcntl(handle, F_SETFL, O_NONBLOCK);
|
fcntl(handle, F_SETFL, O_NONBLOCK);
|
||||||
#endif
|
#endif
|
||||||
setsockopt(handle, SOL_SOCKET, SO_REUSEADDR,
|
setsockopt(handle, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
|
||||||
(char *) &opt, sizeof(opt));
|
setsockopt(handle, SOL_SOCKET, SO_KEEPALIVE, &opt, sizeof(opt));
|
||||||
setsockopt(handle, SOL_SOCKET, SO_KEEPALIVE,
|
|
||||||
(char *) &opt, sizeof(opt));
|
|
||||||
|
|
||||||
/* set our own address */
|
/* set our own address */
|
||||||
if (my_ip != NULL) {
|
if (my_ip != NULL) {
|
||||||
@ -293,10 +291,8 @@ GIOChannel *net_listen(IPADDR *my_ip, int *port)
|
|||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
fcntl(handle, F_SETFL, O_NONBLOCK);
|
fcntl(handle, F_SETFL, O_NONBLOCK);
|
||||||
#endif
|
#endif
|
||||||
setsockopt(handle, SOL_SOCKET, SO_REUSEADDR,
|
setsockopt(handle, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
|
||||||
(char *) &opt, sizeof(opt));
|
setsockopt(handle, SOL_SOCKET, SO_KEEPALIVE, &opt, sizeof(opt));
|
||||||
setsockopt(handle, SOL_SOCKET, SO_KEEPALIVE,
|
|
||||||
(char *) &opt, sizeof(opt));
|
|
||||||
|
|
||||||
/* specify the address/port we want to listen in */
|
/* specify the address/port we want to listen in */
|
||||||
ret = bind(handle, &so.sa, SIZEOF_SOCKADDR(so));
|
ret = bind(handle, &so.sa, SIZEOF_SOCKADDR(so));
|
||||||
|
Loading…
Reference in New Issue
Block a user