Changeset - 0deae41fe011
[Not reviewed]
default
0 2 0
ethanzonca - 16 years ago 2009-07-27 17:43:04

Updated funtion proto, uncommented the conf replacer's decl.
2 files changed with 7 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/server/slavefuncs.c
Show inline comments
 
@@ -108,10 +108,11 @@ void loginuser(char *username){
 
  execio_close(testrem);
 
}
 

	
 
/* Replaces username and key in the slave's conf file, currently pseudo, add to .h!!! */
 
/*
 
/* Replaces username and key in the slave's conf file, currently pseudo */
 

	
 
void conf_replace(char *username, char *key){
 
	// Doesn't delete anything! :D
 
/*
 
	mktemp(); // Gets a new file to put data into
 
	fopen('w'); // Open the file we created in write mode
 
	fopen('r'); // Open the conf file in read-only mode
 
@@ -119,13 +120,14 @@ void conf_replace(char *username, char *
 
	writ(); // writing out to the newly created file
 
	fsync(); // fsync the file we wrote data to
 
	rename(); // rename the old file to the new file
 
*/
 
}
 
*/
 

	
 

	
 
/* Executors */
 

	
 
/*
 
  It seems that the client will need to know the job number. Is finish_frame going to be on the client or the server? we gotta figure that out!
 
  It seems that the client will need to know the job number. fixme.
 
*/
 

	
 
void exec_blender(struct blendjob* blendjob, char *input, char *output, int frame)
src/server/slavefuncs.h
Show inline comments
 
@@ -24,6 +24,7 @@
 
void ssh_keygen();
 
void registeruser(char *username, char *email);
 
void loginuser(char *username);
 
void conf_replace(char *username, char *key);
 
void exec_blender(struct blendjob* blendjob, char *input, char *output, int frame);
 

	
 

	
0 comments (0 inline, 0 general)