~ubuntu-branches/ubuntu/feisty/basilisk2/feisty

« back to all changes in this revision

Viewing changes to src/slirp/udp.c

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2006-06-01 01:11:16 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060601011116-xjhegbgyfsxag5fl
Tags: 0.9.20060529-1
* New upstream CVS snapshot.
* Update local cdbs snippet copyright-check.mk:
  + Broaden scan to also look for "(c)" by default.
  + Make egrep options configurable.
  + Ignore auto-tools files.
* Bump up standards-version to 3.7.2 (no changes needed).
* Let dh_strip do the stripping (not the make install target).

Show diffs side-by-side

added added

removed removed

Lines of Context:
425
425
        uint32_t        d_addr;                 // destination address
426
426
        uint16_t        s_family;               // source family
427
427
        uint16_t        s_port;                 // source port
428
 
        uint32_t        s_addr;                 // source address
 
428
        uint32_t        so_addr;                // source address
429
429
        uint32_t        seqn;                   // sequence number
430
430
        uint16_t        message;                // message
431
431
        uint16_t        data_type;              // data type
617
617
                                return;
618
618
                        cu_head = mtod(m, struct cu_header *);
619
619
                        cu_head->s_port = addr.sin_port;
620
 
                        cu_head->s_addr = our_addr.s_addr;
 
620
                        cu_head->so_addr = our_addr.s_addr;
621
621
                }
622
622
                
623
623
                return;