Home | History | Annotate | Download | only in x11vnc

Lines Matching defs:file

5 This file is part of x11vnc.
28 modify this file, you may extend this exception to your version of the
29 file, but you are not obligated to do so. If you do not wish to do
194 FILE *in = fopen(stunnel_pem, "r");
208 char *file = get_ssl_verify_file(ssl_verify);
209 if (file) {
210 ssl_verify = file;
233 FILE *in;
352 /* temporary file */
548 FILE *out;
653 FILE *file;
823 file = fopen(path, "r");
824 if (file == NULL) {
831 while (fgets(line, 1024, file) != NULL) {
847 fclose(file);
876 file = fopen(path, "r");
877 if (file == NULL) {
882 while (fgets(line, 1024, file) != NULL) {
892 fclose(file);
894 file = fopen(path, "a");
895 if (file == NULL) {
900 fprintf(file, "%s", cert);
901 fclose(file);