This file is indexed.

/usr/include/paristraceroute/packet.h is in libparistraceroute-dev 0.93+git20160927-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#ifndef PACKET_H
#define PACKET_H

/**
 * \file packet.h
 * \brief Header for network packets
 */

#include "buffer.h"    // buffer_t
#include "address.h"   // address_t

/**
 * \struct packet_t
 * \brief Structure describing a network packet
 */

typedef struct packet_s {
    buffer_t  * buffer;   /**< Buffer to hold the packet data */

    // The following fields are those used by the socket pool
    // to send the packet.

    address_t * dst_ip;   /**< Destination address (mandatory) */
} packet_t;

/**
 * \brief Create a new packet
 * \return The newly allocated packet_t instance, NULL in case of failure 
 */

packet_t * packet_create();

/**
 * \brief Create a new packet
 * \param bytes The bytes making the packet
 * \param num_bytes Number of considered bytes 
 * \return The newly allocated packet_t instance, NULL in case of failure 
 */

packet_t * packet_create_from_bytes(uint8_t * bytes, size_t num_bytes);

/**
 * \brief Create a new packet
 * \param bytes The bytes carried by the packet
 * \param num_bytes The packet size (in bytes)
 * \return The newly allocated packet_t instance, NULL in case of failure 
 */

packet_t * packet_wrap_bytes(uint8_t * bytes, size_t num_bytes);

/**
 * \brief Resize a packet
 * \param new_size The new packet size
 * \return true iif successful
 */

bool packet_resize(packet_t * packet, size_t new_size);

/**
 * \brief Retrieve the size of a given packet
 * \param packet The queried packet
 * \return The corresponding size (in bytes)
 */

size_t packet_get_size(const packet_t * packet);

/**
 * \brief Retrieve a pointer to the begining of bytes managed
 *   by a packet_t instance
 * \param packet A packet_t instance
 * \return The corresponding pointer.
 */

uint8_t * packet_get_bytes(const packet_t * packet);

/**
 * \brief Duplicate a packet
 * \param packet The packet we're copying
 * \return The newly allocated packet, NULL in case of failure 
 */

packet_t * packet_dup(const packet_t * packet);

/**
 * \brief Delete a packet
 * \param packet Pointer to the packet structure to delete
 */

void packet_free(packet_t * packet);

/**
 * \brief Dump packet contents
 * \param packet The packet instance we want to print
 */

void packet_dump(const packet_t * packet);

/**
 * \brief Guess the IP version of a packet stored in a buffer
 *   according to the 4 first bits.
 * \param buffer The buffer storing an (IP) packet
 * \return AF_INET for IPv4, AF_INET6 for IPv6, another value
 *   if the buffer is not well-formed.
 */

int packet_guess_address_family(const packet_t * packet);

// Accessors

buffer_t * packet_get_buffer(packet_t * packet);

void packet_set_buffer(packet_t * packet, buffer_t * buffer);

#endif