Open ssl.conf
in a text editor.
Edit the domain(s) listed under the [alt_names]
section so that they match the local domain name you want to use for your project, e.g.
DNS.1 = my-project.dev
Additional FQDNs can be added if required:
#include <stdio.h> | |
#include <curl/curl.h> | |
int main(void) | |
{ | |
CURL *curl; | |
CURLcode res; | |
/* In windows, this will init the winsock stuff */ | |
curl_global_init(CURL_GLOBAL_ALL); | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <sys/timerfd.h> | |
#include <sys/epoll.h> | |
#define MAX_EVENTS 10 | |
int main(int argc, char **argv) | |
{ | |
int timerfd; |
#include <iostream> | |
#include <string> | |
#include <memory> | |
#include <limits> | |
#include <stdexcept> | |
#include <openssl/evp.h> | |
#include <openssl/rand.h> | |
static const unsigned int KEY_SIZE = 32; |
#include <stdio.h> | |
#include <pthread.h> | |
#include <unistd.h> | |
pthread_cond_t cond; | |
pthread_mutex_t lock; | |
void *t0(void *param) | |
{ | |
pthread_mutex_lock(&lock); |
#include <stdio.h> | |
#include <pthread.h> | |
#define THREAD_NUMS 4 | |
pthread_barrier_t barrier; | |
void *t0(void *param) | |
{ | |
pthread_barrier_wait(&barrier); | |
printf("t0 ready\n"); |
#include <stdio.h> | |
#include <pthread.h> | |
#include <semaphore.h> | |
#define BUFFER_SIZE 10 | |
sem_t fill_count, empty_count; | |
pthread_mutex_t lock; | |
int p; |
/* | |
* File: fanotify-example.c | |
* Date: Fri Nov 15 14:55:49 2013 | |
* Author: Aleksander Morgado <[email protected]> | |
* | |
* A simple tester of fanotify in the Linux kernel. | |
* | |
* This program is released in the Public Domain. | |
* | |
* Compile with: |