00001 /* ----------------------------------------------------------------------------- 00002 * new_pmu_or_pdc.h 00003 * 00004 * iPDC - Phasor Data Concentrator 00005 * 00006 * Copyright (C) 2011 Nitesh Pandit 00007 * Copyright (C) 2011 Kedar V. Khandeparkar 00008 * 00009 * This program is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU General Public License 00011 * as published by the Free Software Foundation; either version 2 00012 * of the License, or (at your option) any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00022 * 00023 * Authors: 00024 * Kedar V. Khandeparkar <kedar.khandeparkar@gmail.com> 00025 * Nitesh Pandit <panditnitesh@gmail.com> 00026 * 00027 * ----------------------------------------------------------------------------- */ 00028 00029 00030 /* ---------------------------------------------------------------------*/ 00031 /* Functions defined in new_pmu_or_pdc.c */ 00032 /* ---------------------------------------------------------------------*/ 00033 00034 int add_PMU(char pmuid[], char ip[], char port[], char protocol[]);//void add_PMU(); 00035 void add_PMU_Node(struct Lower_Layer_Details *); 00036 void* connect_pmu_tcp(void *); 00037 void* connect_pmu_udp(void *); 00038 00039 int remove_Lower_Node(char pmuid[], char protocol[]);//void remove_Lower_Node(); 00040 void remove_cfg_from_file(unsigned char idcode[]); 00041 void* remove_llnode(void*); 00042 00043 int put_data_transmission_off(char pmuid[], char protocol[]); 00044 void* data_off_llnode(void* temp); 00045 00046 int put_data_transmission_on(char pmuid[], char protocol[]); 00047 void* data_on_llnode(void* temp); 00048 00049 int configuration_request(char pmuid[], char protocol[]); 00050 void* config_request(void* temp); 00051 00052 int add_PDC(char ip[], char protocol[]);//void add_PDC(); 00053 int remove_PDC(char ip[], char port_num[], char protocol[]);//void remove_PDC(); 00054 00055 void display_CT(); 00056 00057 void create_command_frame(int type,int pmuid,char *); 00058 00059 int checkip(char ip[]); 00060 00061 00062