Skip to content
Snippets Groups Projects
Commit 0f7e2b21 authored by Carsten Patzke's avatar Carsten Patzke
Browse files

*

parent 156d208d
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,6 @@ class DummyDetector
public:
int main(int argc, char* argv[]);
void handle_file_done(hidra2::FileReferenceId reference_id, hidra2::ProducerError producer_error);
};
#endif //HIDRA2_DUMMYEVENTDETECTOR__DUMMYDETECTOR_H
//
// Created by cpatzke on 30.11.17.
//
#include <sys/socket.h>
#include <cstring>
#include <netinet/in.h>
#include <unistd.h>
#include "receiver.h"
const int Receiver::kMaxUnacceptedBacklog = 5;
Receiver::Receiver(sockaddr_in listen_address) {
this->listen_address = listen_address;
}
void Receiver::start_listener() {
sockfd = socket(AF_INET,SOCK_STREAM, 0);
bind(sockfd, (struct sockaddr *)&listen_address, sizeof(listen_address));
listen(sockfd, kMaxUnacceptedBacklog);
}
void Receiver::stop_listener() {
close(sockfd);
}
#ifndef HIDRA2_RECEIVER_H
#define HIDRA2_RECEIVER_H
#import <string>
class Receiver {
private:
static const int kMaxUnacceptedBacklog;
public:
int sockfd, newsockfd, n, pid;
Receiver(sockaddr_in listen_address);
struct sockaddr listen_address;
void start_listener();
void stop_listener();
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment