diff options
author | Raimo Niskanen <[email protected]> | 2011-09-28 12:17:18 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2011-09-28 12:17:18 +0200 |
commit | 12dd72928d588584b38e4835fc0bf96a02e4837c (patch) | |
tree | f5cbdf5cf9b11007389469eb8d3d860c198a0f2b /erts/emulator | |
parent | 8b1b916d88663decfceab20e79b4fe9e858c1db2 (diff) | |
parent | fde38fa8d3120e6aa479f7720654114df9cd4ec8 (diff) | |
download | otp-12dd72928d588584b38e4835fc0bf96a02e4837c.tar.gz otp-12dd72928d588584b38e4835fc0bf96a02e4837c.tar.bz2 otp-12dd72928d588584b38e4835fc0bf96a02e4837c.zip |
Merge branch 'dev' into major
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/drivers/common/inet_drv.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/erts/emulator/drivers/common/inet_drv.c b/erts/emulator/drivers/common/inet_drv.c index 743c01d935..43114c6039 100644 --- a/erts/emulator/drivers/common/inet_drv.c +++ b/erts/emulator/drivers/common/inet_drv.c @@ -6539,7 +6539,7 @@ static int sctp_fill_opts(inet_descriptor* desc, char* buf, int buflen, struct linger lg; unsigned int sz = sizeof(lg); - if (sock_getopt(desc->s, IPPROTO_SCTP, SO_LINGER, + if (sock_getopt(desc->s, SOL_SOCKET, SO_LINGER, &lg, &sz) < 0) continue; /* Fill in the response: */ PLACE_FOR(spec, i, @@ -6575,7 +6575,7 @@ static int sctp_fill_opts(inet_descriptor* desc, char* buf, int buflen, { case INET_OPT_RCVBUF : { - proto = IPPROTO_SCTP; + proto = SOL_SOCKET; type = SO_RCVBUF; is_int = 1; tag = am_recbuf; @@ -6583,7 +6583,7 @@ static int sctp_fill_opts(inet_descriptor* desc, char* buf, int buflen, } case INET_OPT_SNDBUF : { - proto = IPPROTO_SCTP; + proto = SOL_SOCKET; type = SO_SNDBUF; is_int = 1; tag = am_sndbuf; @@ -7029,8 +7029,7 @@ static int sctp_fill_opts(inet_descriptor* desc, char* buf, int buflen, i = LOAD_TUPLE(spec, i, 3); /* Now, convert "spec" into the returnable term: */ - /* desc->caller = 0; What does it mean? */ - driver_output_term(desc->port, spec, i); + driver_send_term(desc->port, driver_caller(desc->port), spec, i); FREE(spec); (*dest)[0] = INET_REP_SCTP; |