#include "rcs_defs.hh"#include "inetfile.hh"#include <stdio.h>Include dependency graph for inetnull.cc:

Go to the source code of this file.
Data Structures | |
| class | INET_FILE |
Functions | |
| int | inet_file_init (const char *agent_name, char *agent_version, int debug) |
| INET_FILE * | inet_file_open (const char *url, char *type) |
| char * | inet_file_gets (char *str, int maxlen, INET_FILE *inet_file) |
| int | inet_file_close (INET_FILE *inet_file) |
| int | inet_file_eof (INET_FILE *inet_file) |
| int | inet_file_exit () |
| RCS_EXPORT int | inet_file_rewind (INET_FILE *ifp) |
|
||||||||||||||||
|
Definition at line 25 of file inetnull.cc. 00026 {
00027 return 0;
00028 }
|
|
||||||||||||
|
Definition at line 32 of file inetnull.cc. Referenced by find_proc_and_buffer_lines(), get_buffer_line(), load_nml_config_file(), and CMS_SERVER::read_passwd_file().
00033 {
00034
00035 FILE *fp = NULL;
00036 INET_FILE *inet_file = NULL;
00037
00038 fp = fopen (url, type);
00039 if (NULL == fp)
00040 {
00041 return NULL;
00042 }
00043 inet_file = new INET_FILE;
00044 if (NULL != inet_file)
00045 {
00046 inet_file->fp = fp;
00047 }
00048 return inet_file;
00049 }
|
|
||||||||||||||||
|
Definition at line 54 of file inetnull.cc. Referenced by findSection(), find_proc_and_buffer_lines(), get_buffer_line(), iniFind(), iniSection(), load_nml_config_file(), and CMS_SERVER::read_passwd_file().
|
|
|
Definition at line 65 of file inetnull.cc. Referenced by find_proc_and_buffer_lines(), and load_nml_config_file().
|
|
|
Definition at line 76 of file inetnull.cc. Referenced by findSection(), find_proc_and_buffer_lines(), get_buffer_line(), iniFind(), load_nml_config_file(), and CMS_SERVER::read_passwd_file().
|
|
|
Definition at line 87 of file inetnull.cc. 00088 {
00089 return 0;
00090 }
|
|
|
Definition at line 94 of file inetnull.cc. Referenced by findSection(), and iniFind().
|
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001