24600

triso
avatar
Que cache le pays des Dieux ? - Forum Ghibli - Forum Littéraire

La fin d'un monde souillé est venue. L'oiseau blanc plane dans le ciel annonçant le début d'une longue ère de purification. Détachons-nous à jamais de notre vie dans ce monde de souffrance. Ô toi l'oiseau blanc, l'être vêtu de bleu, guide nous vers ce monde de pureté. - Sutra originel dork.

24601

24602

using System.Diagnostics;
avatar
HURRRR !

24603

avatar
Que cache le pays des Dieux ? - Forum Ghibli - Forum Littéraire

La fin d'un monde souillé est venue. L'oiseau blanc plane dans le ciel annonçant le début d'une longue ère de purification. Détachons-nous à jamais de notre vie dans ce monde de souffrance. Ô toi l'oiseau blanc, l'être vêtu de bleu, guide nous vers ce monde de pureté. - Sutra originel dork.

24604

CParticleKernelCPU_Evolver_Field::CParticleKernelCPU_Evolver_Field(CParticleEvolver_Field *hboParent, const SParticleDeclaration &decl)
: CParticleKernelCPU_Evolver(hboParent)
, m_StreamGUID(hboParent->Name())
, m_Evaluator(hboParent->Evaluator().Get())
, m_PreferedEvalLocation(Eval_CPU)
#if (HH_PARTICLES_PS3_USE_SPUS != 0)
, m_FlattenedCurveSamples(null)
, m_FlattenedCurveSamplesCount(0)
#endif
{
avatar
HURRRR !

24605

24606

-Wl,
avatar
Proud to be CAKE©®™


GCC4TI importe qui a problème en Autriche, pour l'UE plus et une encore de correspours nucléaire, ce n'est pas ytre d'instérier. L'état très même contraire, toujours reconstruire un pouvoir une choyer d'aucrée de compris le plus mite de genre, ce n'est pas moins)
Stalin est l'élection de la langie.

24607

24608

-Wl,
avatar
Proud to be CAKE©®™


GCC4TI importe qui a problème en Autriche, pour l'UE plus et une encore de correspours nucléaire, ce n'est pas ytre d'instérier. L'état très même contraire, toujours reconstruire un pouvoir une choyer d'aucrée de compris le plus mite de genre, ce n'est pas moins)
Stalin est l'élection de la langie.

24609

24610

setDirty
avatar
Proud to be CAKE©®™


GCC4TI importe qui a problème en Autriche, pour l'UE plus et une encore de correspours nucléaire, ce n'est pas ytre d'instérier. L'état très même contraire, toujours reconstruire un pouvoir une choyer d'aucrée de compris le plus mite de genre, ce n'est pas moins)
Stalin est l'élection de la langie.

24611

$(RemoteRoot)\Packs\SampleParticlesIntegration=%HH_SDK_ROOT%\release\application\Packs\SampleParticlesIntegration
avatar
HURRRR !

24612

Plant CoMX
Plant CoMY
Plant CoMZ
Plant GPSSeconds
Plant InitOmeWhe1
Plant InitOmeWhe2
Plant InitOmeWhe3
Plant InitOmeWhe4
Plant InitialMass
Plant JD
Plant LeapSeconds
Plant MoI1
Plant MoI11
Plant MoI12
Plant MoI13
Plant MoI2
Plant MoI21
Plant MoI22
Plant MoI23
Plant MoI3
Plant MoI31
Plant MoI32
Plant MoI33
Plant MoI4
Plant RdX1
Plant RdX2
Plant RdX3
Plant RdX4
Plant RdY1
Plant RdY2
Plant RdY3
Plant RdY4
Plant RdZ1
Plant RdZ2
Plant RdZ3
Plant RdZ4
Plant SADMNinitialAngle
Plant SADMSinitialAngle
Plant SGNMOI
Plant SGSMOI
Plant SatArgPerigee
Plant SatEccentricity
Plant SatInc
Plant SatOmeX
Plant SatOmeY
Plant SatOmeZ
Plant SatPosX
Plant SatPosY
Plant SatPosZ
Plant SatQuat1
Plant SatQuat2
Plant SatQuat3
Plant SatQuat4
Plant SatRAAN
Plant SatSemiMajorAxis
Plant SatTrueAnomaly
Plant SatVelX
Plant SatVelY
Plant SatVelZ
Plant UTCDay
Plant UTCHour
Plant UTCMinute
Plant UTCMonth
Plant UTCSecond
Plant UTCYear
Plant UseUTC
Plant mode
avatar
Que cache le pays des Dieux ? - Forum Ghibli - Forum Littéraire

La fin d'un monde souillé est venue. L'oiseau blanc plane dans le ciel annonçant le début d'une longue ère de purification. Détachons-nous à jamais de notre vie dans ce monde de souffrance. Ô toi l'oiseau blanc, l'être vêtu de bleu, guide nous vers ce monde de pureté. - Sutra originel dork.

24613

On avance, plus qu'à trouver pourquoi recv renvoie SOCKET_ERROR
void Proxy::Initialize() { if (!_canStart) return; // Initialize socket to handle server messages struct hostent* remoteHost = gethostbyname(_conf.remoteHost); if (remoteHost == NULL) { printf("[ERROR] Realm not found.\n"); return; } struct in_addr addressList = {0}; if (remoteHost->h_addrtype == AF_INET) { int i = 0; while (remoteHost->h_addr_list[i] != 0) addressList.s_addr = *(u_long*)remoteHost->h_addr_list[i++]; } // Fill infos for the socket SOCKADDR_IN socketOut; socketOut.sin_addr.s_addr = inet_addr(inet_ntoa(addressList)); socketOut.sin_family = AF_INET; socketOut.sin_port = htons(_conf.remotePort); remoteSocket = socket(AF_INET, SOCK_STREAM, 0); printf("[INFO] Connecting to %s:%u (%s)...\n", _conf.remoteHost, _conf.remotePort, inet_ntoa(addressList)); int errorCode = connect(remoteSocket, (SOCKADDR*)&socketOut, sizeof(socketOut)); if (errorCode == SOCKET_ERROR) { printf("[ERROR] Error #%u when connecting to remote server: %s", errorCode, WSAGetLastError()); return; } else printf("[INFO] Connected to remote server.\n"); // Initialize socket to handle client messages SOCKADDR_IN socketIn; socketIn.sin_addr.s_addr = inet_addr("127.0.0.1"); socketIn.sin_family = AF_INET; socketIn.sin_port = htons(_conf.localPort); clientSocket = socket(AF_INET, SOCK_STREAM, 0); errorCode = bind(clientSocket, (SOCKADDR*)&socketIn, sizeof(socketIn)); if (errorCode == -1) { printf("[ERROR] Error when binding on port %u.\n", _conf.localPort); return; } // Start listening errorCode = listen(clientSocket, 1); if (errorCode == SOCKET_ERROR) { printf("[ERROR] Unable to listen on port %u.\n", _conf.localPort); return; } printf("[INFO] Proxy listening on 127.0.0.1:%u and proxying to %s:%u.\n", _conf.localPort, _conf.remoteHost, _conf.remotePort); while (true) { // Main polling loop char dataBuffer[4096]; FD_SET socketSet; struct timeval timeoutDelay = { 1, 0 }; FD_ZERO(&socketSet); FD_SET(clientSocket, &socketSet); // Insert client socket FD_SET(remoteSocket, &socketSet); // Insert server socket if (select(0, &socketSet, NULL, NULL, &timeoutDelay) == 0) // No socket active continue; if (!FD_ISSET(clientSocket, &socketSet)) // No new connection continue; errorCode = accept(clientSocket, NULL, 0); if (errorCode == SOCKET_ERROR) { printf("[ERROR] Error #%u when accepting a client.\n", errno); break; } else printf("[INFO] Client connected.\n"); //! TODO: Origin? bool closeNeeded = false; int byteCount = 0; if (FD_ISSET(clientSocket, &socketSet)) { byteCount = recv(clientSocket, dataBuffer, sizeof(dataBuffer), 0); // Handle packet (CMSG). if (byteCount <= 0 || send(remoteSocket, dataBuffer, byteCount, 0) == SOCKET_ERROR) closeNeeded = true; } if (FD_ISSET(remoteSocket, &socketSet)) { byteCount = recv(remoteSocket, dataBuffer, sizeof(dataBuffer), 0); // Handle packet (SMSG). if (byteCount <= 0 || send(clientSocket, dataBuffer, byteCount, 0) == SOCKET_ERROR) closeNeeded = true; } if (!closeNeeded) continue; printf("[INFO] Closing link with the client.\n"); DestroySockets(); return; } DestroySockets(); }

24614

Ce n'est plus de l'apéro qu'il s'agit, mais c'est le m&#65533;me principe !
Petite suggestion : il est 22h06, l'heure du pastis.
avatar
Proud to be CAKE©®™


GCC4TI importe qui a problème en Autriche, pour l'UE plus et une encore de correspours nucléaire, ce n'est pas ytre d'instérier. L'état très même contraire, toujours reconstruire un pouvoir une choyer d'aucrée de compris le plus mite de genre, ce n'est pas moins)
Stalin est l'élection de la langie.

24615

Ai Weiwei
avatar
HURRRR !

24616

"He allegedly hit his former personal assistant and smacked an audience member with his microphone -- both of whom have filed lawsuits."
J'ignorais qu'un microphone pouvait porter plainte cheeky
avatar
Zeroblog

« Tout homme porte sur l'épaule gauche un singe et, sur l'épaule droite, un perroquet. » — Jean Cocteau
« Moi je cherche plus de logique non plus. C'est surement pour cela que j'apprécie les Ataris, ils sont aussi logiques que moi ! » — GT Turbo

24617


//----------------------------------------------------------------------------

void CParticleSamplerAnimTrack:grineclareExternalObject(CCompilerASTBuilder &builder) const
{
CParticleSamplerShape *shapeSampler = Sampler();
if (shapeSampler == null)
return;

if (shapeSampler->Shape() == null || shapeSampler->Shape()->Descriptor() == null)
return;

HH_ASSERT(builder.CompilerContext() != null);
if (m_SamplerNameGUID.Valid())
{
hh_u32 shapeStreamMask = (shapeSampler->SampleDimensionality() > 2) ? shapeSampler->Shape()->Descriptor()->VolumeSamplingMask() : shapeSampler->Shape()->Descriptor()->SurfaceSamplingMask();

// const char samplerTypeName[] = "samplerShape"; // FIXME: this will have to change depending on the 'm_UsingFixedLocations' flag. name it differently
char _samplerTypeName[32];
snprintf(_samplerTypeName, sizeof(_samplerTypeName), "samplerAnimTrack_%02X%s", shapeStreamMask, shapeSampler->UsingFixedLocations() ? "_fixed" : "");
CStringView samplerTypeName(_samplerTypeName, strlen(_samplerTypeName));

{
CCompilerTypeLibrary *typeLib = builder.CompilerContext()->TypeLibrary().Get();
SCompilerTypeID stId = typeLib->Find(samplerTypeName);

if (!stId.Empty())
{
builder.DeclareExternal(m_SamplerNameGUID,
stId,
sizeof(void*),
CCompilerASTNode::MetaType_Normal,
Compiler::Attribute_NoWrite); // read-only, can't modify
}
}
}
}
avatar
HURRRR !

24618

I:\Documents and Settings\All Users\PMS
avatar
Que cache le pays des Dieux ? - Forum Ghibli - Forum Littéraire

La fin d'un monde souillé est venue. L'oiseau blanc plane dans le ciel annonçant le début d'une longue ère de purification. Détachons-nous à jamais de notre vie dans ce monde de souffrance. Ô toi l'oiseau blanc, l'être vêtu de bleu, guide nous vers ce monde de pureté. - Sutra originel dork.

24619

pwet
avatar
Proud to be CAKE©®™


GCC4TI importe qui a problème en Autriche, pour l'UE plus et une encore de correspours nucléaire, ce n'est pas ytre d'instérier. L'état très même contraire, toujours reconstruire un pouvoir une choyer d'aucrée de compris le plus mite de genre, ce n'est pas moins)
Stalin est l'élection de la langie.

24620

bear: sizeof(void*) ?

24621

mrf24j40_setsreg(MRF24J40S_PANIDH, (uchar)(panid>>8) );
mrf24j40_setsreg(MRF24J40S_PANIDL, (uchar)(panid&0xff));

24622

Sujets déjà lus
avatar
Proud to be CAKE©®™


GCC4TI importe qui a problème en Autriche, pour l'UE plus et une encore de correspours nucléaire, ce n'est pas ytre d'instérier. L'état très même contraire, toujours reconstruire un pouvoir une choyer d'aucrée de compris le plus mite de genre, ce n'est pas moins)
Stalin est l'élection de la langie.

24623

24624

Sujets déjà lus
avatar
Proud to be CAKE©®™


GCC4TI importe qui a problème en Autriche, pour l'UE plus et une encore de correspours nucléaire, ce n'est pas ytre d'instérier. L'état très même contraire, toujours reconstruire un pouvoir une choyer d'aucrée de compris le plus mite de genre, ce n'est pas moins)
Stalin est l'élection de la langie.

24625

24626

=4532.92N/01930.10E-Op.Vlado/QTH:Kula {UISS53}>ARISS - International Space Station (BBS/APRS on)
:LA3VW :hallo fRom milan{63

TPPURS de EA4GAY via WIDE1* WIDE2-2 Ctl R UI Pid=F0 Len=12>
'|1Bl K\]=

APZWPP de S51BJ via RS0ISS-4* Ctl R UI Pid=F0 Len=58>
=4633.86N/01608.22Ey++ OP. JOZE 73 ! S51BJJ@GMAIL.COM ++
APZWPP de S51BJ via RS0ISS-4* Ctl R UI Pid=F0 Len=58>
=4633.86N/01608.22Ey++ OP. JOZE 73 ! S51BJJ@GMAIL.COM ++

24627

Receiving a CMSG: Error 10057: Une requÛte dÆenvoi ou de rÚception de donnÚes nÆa pas ÚtÚ autorisÚe car le socket nÆest pas connectÚ et (lors de lÆenvoi sur un socket datagramme en utilisa nt un appel sendto) aucune adresse nÆa ÚtÚ fournie.


Well, shit, accept() ne foire pas pourtant.

24628

24629

24630