Increment network byte order properly
Reviewed by: wollman
This commit is contained in:
parent
ba0b5e96d0
commit
ee6c90f5c0
@ -26,7 +26,7 @@
|
||||
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id$
|
||||
* $Id: find_interface.c,v 1.1 1995/08/14 16:08:39 wollman Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -87,7 +87,7 @@ main(int argc, char **argv)
|
||||
|
||||
do {
|
||||
rv = bind(s, (struct sockaddr *)&local, sizeof local);
|
||||
local.sin_port++;
|
||||
local.sin_port = htons(ntohs(local.sin_port) + 1);
|
||||
} while(rv < 0 && errno == EADDRINUSE);
|
||||
|
||||
if (rv < 0)
|
||||
@ -95,7 +95,7 @@ main(int argc, char **argv)
|
||||
|
||||
do {
|
||||
rv = connect(s, (struct sockaddr *)&remote, sizeof remote);
|
||||
remote.sin_port++;
|
||||
remote.sin_port = htons(ntohs(remote.sin_port) + 1);
|
||||
} while(rv < 0 && errno == EADDRINUSE);
|
||||
|
||||
if (rv < 0)
|
||||
|
@ -29,7 +29,7 @@
|
||||
* From:
|
||||
* Id: find_interface.c,v 1.1 1995/08/14 16:08:39 wollman Exp
|
||||
*
|
||||
* $Id$
|
||||
* $Id: get_iface.c,v 1.1 1996/03/09 19:22:52 joerg Exp $
|
||||
*/
|
||||
|
||||
#include <unistd.h>
|
||||
@ -70,7 +70,7 @@ get_iface(dst, iface)
|
||||
|
||||
do {
|
||||
rv = bind(s, (struct sockaddr *)&local, sizeof local);
|
||||
local.sin_port++;
|
||||
local.sin_port = htons(ntohs(local.sin_port) + 1);
|
||||
} while(rv < 0 && errno == EADDRINUSE);
|
||||
|
||||
if (rv < 0) {
|
||||
@ -80,7 +80,7 @@ get_iface(dst, iface)
|
||||
|
||||
do {
|
||||
rv = connect(s, (struct sockaddr *)&remote, sizeof remote);
|
||||
remote.sin_port++;
|
||||
remote.sin_port = htons(ntohs(remote.sin_port) + 1);
|
||||
} while(rv < 0 && errno == EADDRINUSE);
|
||||
|
||||
if (rv < 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user