This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# | |
# Copyright (C) 2009-2010 D. R. Commander. All Rights Reserved. | |
# Copyright (C) 2005-2006 Sun Microsystems, Inc. All Rights Reserved. | |
# Copyright (C) 2002-2003 Constantin Kaplinsky. All Rights Reserved. | |
# Copyright (C) 2002-2005 RealVNC Ltd. | |
# Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved. | |
# | |
# This is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ip="1.2.3.4" | |
port="1194" | |
proto="udp" | |
############################ | |
client=$1 | |
ca="ca.crt" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$host="localhost"; //url of database server; | |
$dbname=""; //database name; | |
$user=""; //database username; | |
$pass=""; //database password; | |
$table=""; //database table; | |
//Connection to mysql server; | |
$DBH = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass); |