Open up the port where the container will connect to.
nc -lp 6666
% Copyright (C) 2013 Lars Richter | |
% | |
% This program is free software: you can redistribute it and/or modify | |
% it under the terms of the GNU General Public License as published by | |
% the Free Software Foundation, either version 3 of the License, or | |
% (at your option) any later version. | |
% | |
% This program is distributed in the hope that it will be useful, | |
% but WITHOUT ANY WARRANTY; without even the implied warranty of | |
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
Option Explicit | |
Class ListMatchingFiles | |
Public pathList | |
' saves an array in var pathList with the file names that match the given path | |
' The Path string may contain the wildcard characters "*" | |
' and "?" in the file name component. | |
' Widcard * is allowed in Folder and Filenames, eg. "H:\home\*\work\*\*abc*.err" | |
' If Path is a directory, the contents of this directory is listed. |
/* | |
* For more information about the availability of SGX for your system check: https://github.com/ayeks/SGX-hardware | |
* Example output from a SGX enabled CPU is provided at the end of the Readme in that repo. | |
* This GIST won't be updated, however it will stay because it is linked in Stackoverflow. | |
*/ | |
#include <stdio.h> | |
static inline void native_cpuid(unsigned int *eax, unsigned int *ebx, | |
unsigned int *ecx, unsigned int *edx) | |
{ |