Increment network byte order properly

Reviewed by: wollman
This commit is contained in:
Andrey A. Chernov 1996-03-12 10:23:30 +00:00
parent 71d7d1b17a
commit 7573cb47cf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14585
2 changed files with 6 additions and 6 deletions

View File

@ -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)

View File

@ -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) {