@@ -221,6 +221,8 @@ struct htp_tx_t {
221
221
*/
222
222
int is_config_shared ;
223
223
224
+ SCAN_BUILD_X64_PADDING (int pad0 );
225
+
224
226
/** The user data associated with this transaction. */
225
227
void * user_data ;
226
228
@@ -230,6 +232,8 @@ struct htp_tx_t {
230
232
/** Contains a count of how many empty lines were skipped before the request line. */
231
233
unsigned int request_ignored_lines ;
232
234
235
+ SCAN_BUILD_X64_PADDING (int pad1 );
236
+
233
237
/** The first line of this request. */
234
238
bstr * request_line ;
235
239
@@ -239,6 +243,8 @@ struct htp_tx_t {
239
243
/** Request method, as number. Available only if we were able to recognize the request method. */
240
244
enum htp_method_t request_method_number ;
241
245
246
+ SCAN_BUILD_X64_PADDING (int pad2 );
247
+
242
248
/**
243
249
* Request URI, raw, as given to us on the request line. This field can take different forms,
244
250
* for example authority for CONNECT methods, absolute URIs for proxy requests, and the query
@@ -421,6 +427,8 @@ struct htp_tx_t {
421
427
*/
422
428
int response_protocol_number ;
423
429
430
+ SCAN_BUILD_X64_PADDING (int pad3 );
431
+
424
432
/**
425
433
* Response status code, as text. Starts as NULL and can remain NULL on
426
434
* an invalid response that does not specify status code.
@@ -445,6 +453,8 @@ struct htp_tx_t {
445
453
/** Have we seen the server respond with a 100 response? */
446
454
int seen_100continue ;
447
455
456
+ SCAN_BUILD_X64_PADDING (int pad4 );
457
+
448
458
/** Parsed response headers. Contains instances of htp_header_t. */
449
459
htp_table_t * response_headers ;
450
460
@@ -512,6 +522,8 @@ struct htp_tx_t {
512
522
*/
513
523
enum htp_content_encoding_t response_content_encoding_processing ;
514
524
525
+ SCAN_BUILD_X64_PADDING (int pad5 );
526
+
515
527
/**
516
528
* This field will contain the response content type when that information
517
529
* is available in response headers. The contents of the field will be converted
0 commit comments