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

« back to all changes in this revision

Viewing changes to src/slirp/bootp.h

  • 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:
90
90
#define BOOTP_VENDOR_LEN        64
91
91
#define DHCP_OPT_LEN            312
92
92
 
 
93
#ifdef PRAGMA_PACK_SUPPORTED
 
94
#pragma pack(1)
 
95
#endif
 
96
 
93
97
struct bootp_t {
94
98
    struct ip ip;
95
99
    struct udphdr udp;
108
112
    uint8_t bp_sname[64];
109
113
    uint8_t bp_file[128];
110
114
    uint8_t bp_vend[DHCP_OPT_LEN];
111
 
};
 
115
} PACKED__;
 
116
 
 
117
#ifdef PRAGMA_PACK_SUPPORTED
 
118
#pragma pack(0)
 
119
#endif
112
120
 
113
121
void bootp_input(struct mbuf *m);