home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / network / netlib_1 / NetLibSrc / c / makeaddr < prev    next >
Text File  |  1995-02-28  |  259b  |  15 lines

  1. #include "arpa/inet.h"
  2. #include "netinet/in.h"
  3.  
  4. /*
  5.  * Create an internet address from a network number and a local address
  6.  */
  7. struct in_addr inet_makeaddr(u_long net,u_long lna)
  8. {
  9.   struct in_addr address;
  10.  
  11.   address.s_addr = net | lna;
  12.  
  13.   return address;
  14. }
  15.