Skip to content

Commit

Permalink
Tweak to ambassador
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebenezer-group committed Jun 24, 2024
1 parent 1b8d417 commit dc92605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tiers/cmwA.cc
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ int main (int ac,char** av)try{
checkField("UDP-port-number",cfg.getline(' '));
BufferStack<SameFormat> frntBuf{udpServer(cfg.getline().data())};
ioUring ring{frntBuf.sock_};
::io_uring_cqe* cq=nullptr;
::io_uring_cqe* cq=0;
::std::deque<cmwRequest> pendingRequests;

for(;;){
Expand All @@ -211,7 +211,7 @@ int main (int ac,char** av)try{
}
Socky frnt;
bool gotAddr=false;
cmwRequest* req=nullptr;
cmwRequest* req=0;
try{
gotAddr=frntBuf.getPacket((::sockaddr*)&frnt.addr,&frnt.len);
req=&pendingRequests.emplace_back(frnt,frntBuf);
Expand Down

0 comments on commit dc92605

Please sign in to comment.