Load Balancer - CSCE 412 Project 3 1.0
Loading...
Searching...
No Matches
request.h
Go to the documentation of this file.
1
6
7#ifndef REQUEST_H
8#define REQUEST_H
9
10#include <string>
11
17struct Request {
21 std::string ip_in;
22
26 std::string ip_out;
27
31 int time;
32};
33
34#endif // REQUEST_H
Represents a network request with source and destination IPs and a processing time.
Definition request.h:17
int time
Number of cycles required to process the request.
Definition request.h:31
std::string ip_out
Destination IP address of the request.
Definition request.h:26
std::string ip_in
Source IP address of the request.
Definition request.h:21