File diff r15578:4df52cbd221a → r15579:ec523aee641f
src/network/network_udp.cpp
Show inline comments
 
@@ -25,12 +25,13 @@
 
#include "network_udp.h"
 
#include "network.h"
 
#include "../core/endian_func.hpp"
 
#include "../company_base.h"
 
#include "../thread/thread.h"
 
#include "../rev.h"
 
#include "../newgrf_text.h"
 

	
 
#include "core/udp.h"
 

	
 
static ThreadMutex *_network_udp_mutex = ThreadMutex::New();
 

	
 
/** Session key to register ourselves to the master server */
 
@@ -363,17 +364,17 @@ void ClientNetworkUDPSocketHandler::Hand
 
	/* Find the matching GRF file */
 
	const GRFConfig *f = FindGRFConfig(config->ident.grfid, config->ident.md5sum);
 
	if (f == NULL) {
 
		/* Don't know the GRF, so mark game incompatible and the (possibly)
 
		 * already resolved name for this GRF (another server has sent the
 
		 * name of the GRF already */
 
		config->name   = FindUnknownGRFName(config->ident.grfid, config->ident.md5sum, true);
 
		AddGRFTextToList(&config->name, FindUnknownGRFName(config->ident.grfid, config->ident.md5sum, true));
 
		config->status = GCS_NOT_FOUND;
 
	} else {
 
		config->filename  = f->filename;
 
		config->name      = f->name;
 
		config->name      = DuplicateGRFText(f->name);
 
		config->info      = f->info;
 
	}
 
	SetBit(config->flags, GCF_COPY);
 
}
 

	
 
/* Broadcast to all ips */