]>
git.saurik.com Git - apt.git/blob - methods/http.cc
a5af2891763d6181fe10ce90bafe73d2a78c44ac
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: http.cc,v 1.57 2004/01/07 20:39:38 mdz Exp $
4 /* ######################################################################
6 HTTP Aquire Method - This is the HTTP aquire method for APT.
8 It uses HTTP/1.1 and many of the fancy options there-in, such as
9 pipelining, range, if-range and so on.
11 It is based on a doubly buffered select loop. A groupe of requests are
12 fed into a single output buffer that is constantly fed out the
13 socket. This provides ideal pipelining as in many cases all of the
14 requests will fit into a single packet. The input socket is buffered
15 the same way and fed into the fd for the file (may be a pipe in future).
17 This double buffering provides fairly substantial transfer rates,
18 compared to wget the http method is about 4% faster. Most importantly,
19 when HTTP is compared with FTP as a protocol the speed difference is
20 huge. In tests over the internet from two sites to llug (via ATM) this
21 program got 230k/s sustained http transfer rates. FTP on the other
22 hand topped out at 170k/s. That combined with the time to setup the
23 FTP connection makes HTTP a vastly superior protocol.
25 ##################################################################### */
27 // Include Files /*{{{*/
28 #include <apt-pkg/fileutl.h>
29 #include <apt-pkg/acquire-method.h>
30 #include <apt-pkg/error.h>
31 #include <apt-pkg/hashes.h>
48 #include "rfc2553emu.h"
54 string
HttpMethod::FailFile
;
55 int HttpMethod::FailFd
= -1;
56 time_t HttpMethod::FailTime
= 0;
57 unsigned long PipelineDepth
= 10;
58 unsigned long TimeOut
= 120;
61 // CircleBuf::CircleBuf - Circular input buffer /*{{{*/
62 // ---------------------------------------------------------------------
64 CircleBuf::CircleBuf(unsigned long Size
) : Size(Size
), Hash(0)
66 Buf
= new unsigned char[Size
];
70 // CircleBuf::Reset - Reset to the default state /*{{{*/
71 // ---------------------------------------------------------------------
73 void CircleBuf::Reset()
78 MaxGet
= (unsigned int)-1;
87 // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
88 // ---------------------------------------------------------------------
89 /* This fills up the buffer with as much data as is in the FD, assuming it
91 bool CircleBuf::Read(int Fd
)
95 // Woops, buffer is full
96 if (InP
- OutP
== Size
)
99 // Write the buffer segment
101 Res
= read(Fd
,Buf
+ (InP%Size
),LeftRead());
113 gettimeofday(&Start
,0);
118 // CircleBuf::Read - Put the string into the buffer /*{{{*/
119 // ---------------------------------------------------------------------
120 /* This will hold the string in and fill the buffer with it as it empties */
121 bool CircleBuf::Read(string Data
)
128 // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
129 // ---------------------------------------------------------------------
131 void CircleBuf::FillOut()
133 if (OutQueue
.empty() == true)
137 // Woops, buffer is full
138 if (InP
- OutP
== Size
)
141 // Write the buffer segment
142 unsigned long Sz
= LeftRead();
143 if (OutQueue
.length() - StrPos
< Sz
)
144 Sz
= OutQueue
.length() - StrPos
;
145 memcpy(Buf
+ (InP%Size
),OutQueue
.c_str() + StrPos
,Sz
);
150 if (OutQueue
.length() == StrPos
)
159 // CircleBuf::Write - Write from the buffer into a FD /*{{{*/
160 // ---------------------------------------------------------------------
161 /* This empties the buffer into the FD. */
162 bool CircleBuf::Write(int Fd
)
168 // Woops, buffer is empty
175 // Write the buffer segment
177 Res
= write(Fd
,Buf
+ (OutP%Size
),LeftWrite());
190 Hash
->Add(Buf
+ (OutP%Size
),Res
);
196 // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
197 // ---------------------------------------------------------------------
198 /* This copies till the first empty line */
199 bool CircleBuf::WriteTillEl(string
&Data
,bool Single
)
201 // We cheat and assume it is unneeded to have more than one buffer load
202 for (unsigned long I
= OutP
; I
< InP
; I
++)
204 if (Buf
[I%Size
] != '\n')
206 for (I
++; I
< InP
&& Buf
[I%Size
] == '\r'; I
++);
210 if (Buf
[I%Size
] != '\n')
212 for (I
++; I
< InP
&& Buf
[I%Size
] == '\r'; I
++);
221 unsigned long Sz
= LeftWrite();
224 if (I
- OutP
< LeftWrite())
226 Data
+= string((char *)(Buf
+ (OutP%Size
)),Sz
);
234 // CircleBuf::Stats - Print out stats information /*{{{*/
235 // ---------------------------------------------------------------------
237 void CircleBuf::Stats()
243 gettimeofday(&Stop
,0);
244 /* float Diff = Stop.tv_sec - Start.tv_sec +
245 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
246 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
250 // ServerState::ServerState - Constructor /*{{{*/
251 // ---------------------------------------------------------------------
253 ServerState::ServerState(URI Srv
,HttpMethod
*Owner
) : Owner(Owner
),
254 In(64*1024), Out(4*1024),
260 // ServerState::Open - Open a connection to the server /*{{{*/
261 // ---------------------------------------------------------------------
262 /* This opens a connection to the server. */
263 bool ServerState::Open()
265 // Use the already open connection if possible.
274 // Determine the proxy setting
275 if (getenv("http_proxy") == 0)
277 string DefProxy
= _config
->Find("Acquire::http::Proxy");
278 string SpecificProxy
= _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
);
279 if (SpecificProxy
.empty() == false)
281 if (SpecificProxy
== "DIRECT")
284 Proxy
= SpecificProxy
;
290 Proxy
= getenv("http_proxy");
292 // Parse no_proxy, a , separated list of domains
293 if (getenv("no_proxy") != 0)
295 if (CheckDomainList(ServerName
.Host
,getenv("no_proxy")) == true)
299 // Determine what host and port to use based on the proxy settings
302 if (Proxy
.empty() == true || Proxy
.Host
.empty() == true)
304 if (ServerName
.Port
!= 0)
305 Port
= ServerName
.Port
;
306 Host
= ServerName
.Host
;
315 // Connect to the remote server
316 if (Connect(Host
,Port
,"http",80,ServerFd
,TimeOut
,Owner
) == false)
322 // ServerState::Close - Close a connection to the server /*{{{*/
323 // ---------------------------------------------------------------------
325 bool ServerState::Close()
332 // ServerState::RunHeaders - Get the headers before the data /*{{{*/
333 // ---------------------------------------------------------------------
334 /* Returns 0 if things are OK, 1 if an IO error occursed and 2 if a header
335 parse error occured */
336 int ServerState::RunHeaders()
340 Owner
->Status(_("Waiting for headers"));
354 if (In
.WriteTillEl(Data
) == false)
360 for (string::const_iterator I
= Data
.begin(); I
< Data
.end(); I
++)
362 string::const_iterator J
= I
;
363 for (; J
!= Data
.end() && *J
!= '\n' && *J
!= '\r';J
++);
364 if (HeaderLine(string(I
,J
)) == false)
369 // 100 Continue is a Nop...
373 // Tidy up the connection persistance state.
374 if (Encoding
== Closes
&& HaveContent
== true)
379 while (Owner
->Go(false,this) == true);
384 // ServerState::RunData - Transfer the data from the socket /*{{{*/
385 // ---------------------------------------------------------------------
387 bool ServerState::RunData()
391 // Chunked transfer encoding is fun..
392 if (Encoding
== Chunked
)
396 // Grab the block size
402 if (In
.WriteTillEl(Data
,true) == true)
405 while ((Last
= Owner
->Go(false,this)) == true);
410 // See if we are done
411 unsigned long Len
= strtol(Data
.c_str(),0,16);
416 // We have to remove the entity trailer
420 if (In
.WriteTillEl(Data
,true) == true && Data
.length() <= 2)
423 while ((Last
= Owner
->Go(false,this)) == true);
426 return !_error
->PendingError();
429 // Transfer the block
431 while (Owner
->Go(true,this) == true)
432 if (In
.IsLimit() == true)
436 if (In
.IsLimit() == false)
439 // The server sends an extra new line before the next block specifier..
444 if (In
.WriteTillEl(Data
,true) == true)
447 while ((Last
= Owner
->Go(false,this)) == true);
454 /* Closes encoding is used when the server did not specify a size, the
455 loss of the connection means we are done */
456 if (Encoding
== Closes
)
459 In
.Limit(Size
- StartPos
);
461 // Just transfer the whole block.
464 if (In
.IsLimit() == false)
468 return !_error
->PendingError();
470 while (Owner
->Go(true,this) == true);
473 return Owner
->Flush(this) && !_error
->PendingError();
476 // ServerState::HeaderLine - Process a header line /*{{{*/
477 // ---------------------------------------------------------------------
479 bool ServerState::HeaderLine(string Line
)
481 if (Line
.empty() == true)
484 // The http server might be trying to do something evil.
485 if (Line
.length() >= MAXLEN
)
486 return _error
->Error(_("Got a single header line over %u chars"),MAXLEN
);
488 string::size_type Pos
= Line
.find(' ');
489 if (Pos
== string::npos
|| Pos
+1 > Line
.length())
491 // Blah, some servers use "connection:closes", evil.
492 Pos
= Line
.find(':');
493 if (Pos
== string::npos
|| Pos
+ 2 > Line
.length())
494 return _error
->Error(_("Bad header line"));
498 // Parse off any trailing spaces between the : and the next word.
499 string::size_type Pos2
= Pos
;
500 while (Pos2
< Line
.length() && isspace(Line
[Pos2
]) != 0)
503 string Tag
= string(Line
,0,Pos
);
504 string Val
= string(Line
,Pos2
);
506 if (stringcasecmp(Tag
.c_str(),Tag
.c_str()+4,"HTTP") == 0)
508 // Evil servers return no version
511 if (sscanf(Line
.c_str(),"HTTP/%u.%u %u %[^\n]",&Major
,&Minor
,
513 return _error
->Error(_("The http server sent an invalid reply header"));
519 if (sscanf(Line
.c_str(),"HTTP %u %[^\n]",&Result
,Code
) != 2)
520 return _error
->Error(_("The http server sent an invalid reply header"));
523 /* Check the HTTP response header to get the default persistance
529 if (Major
== 1 && Minor
<= 0)
538 if (stringcasecmp(Tag
,"Content-Length:") == 0)
540 if (Encoding
== Closes
)
544 // The length is already set from the Content-Range header
548 if (sscanf(Val
.c_str(),"%lu",&Size
) != 1)
549 return _error
->Error(_("The http server sent an invalid Content-Length header"));
553 if (stringcasecmp(Tag
,"Content-Type:") == 0)
559 if (stringcasecmp(Tag
,"Content-Range:") == 0)
563 if (sscanf(Val
.c_str(),"bytes %lu-%*u/%lu",&StartPos
,&Size
) != 2)
564 return _error
->Error(_("The http server sent an invalid Content-Range header"));
565 if ((unsigned)StartPos
> Size
)
566 return _error
->Error(_("This http server has broken range support"));
570 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
573 if (stringcasecmp(Val
,"chunked") == 0)
578 if (stringcasecmp(Tag
,"Connection:") == 0)
580 if (stringcasecmp(Val
,"close") == 0)
582 if (stringcasecmp(Val
,"keep-alive") == 0)
587 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
589 if (StrToTime(Val
,Date
) == false)
590 return _error
->Error(_("Unknown date format"));
598 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
599 // ---------------------------------------------------------------------
600 /* This places the http request in the outbound buffer */
601 void HttpMethod::SendReq(FetchItem
*Itm
,CircleBuf
&Out
)
605 // The HTTP server expects a hostname with a trailing :port
607 string ProperHost
= Uri
.Host
;
610 sprintf(Buf
,":%u",Uri
.Port
);
615 if (Itm
->Uri
.length() >= sizeof(Buf
))
618 /* Build the request. We include a keep-alive header only for non-proxy
619 requests. This is to tweak old http/1.0 servers that do support keep-alive
620 but not HTTP/1.1 automatic keep-alive. Doing this with a proxy server
621 will glitch HTTP/1.0 proxies because they do not filter it out and
622 pass it on, HTTP/1.1 says the connection should default to keep alive
623 and we expect the proxy to do this */
624 if (Proxy
.empty() == true)
625 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
626 QuoteString(Uri
.Path
,"~").c_str(),ProperHost
.c_str());
629 /* Generate a cache control header if necessary. We place a max
630 cache age on index files, optionally set a no-cache directive
631 and a no-store directive for archives. */
632 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\n",
633 Itm
->Uri
.c_str(),ProperHost
.c_str());
634 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
635 strcat(Buf
,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
638 if (Itm
->IndexFile
== true)
639 sprintf(Buf
+strlen(Buf
),"Cache-Control: max-age=%u\r\n",
640 _config
->FindI("Acquire::http::Max-Age",60*60*24));
643 if (_config
->FindB("Acquire::http::No-Store",false) == true)
644 strcat(Buf
,"Cache-Control: no-store\r\n");
651 // Check for a partial file
653 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
655 // In this case we send an if-range query with a range header
656 sprintf(Buf
,"Range: bytes=%li-\r\nIf-Range: %s\r\n",(long)SBuf
.st_size
- 1,
657 TimeRFC1123(SBuf
.st_mtime
).c_str());
662 if (Itm
->LastModified
!= 0)
664 sprintf(Buf
,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm
->LastModified
).c_str());
669 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
670 Req
+= string("Proxy-Authorization: Basic ") +
671 Base64Encode(Proxy
.User
+ ":" + Proxy
.Password
) + "\r\n";
673 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
674 Req
+= string("Authorization: Basic ") +
675 Base64Encode(Uri
.User
+ ":" + Uri
.Password
) + "\r\n";
677 Req
+= "User-Agent: Debian APT-HTTP/1.3\r\n\r\n";
685 // HttpMethod::Go - Run a single loop /*{{{*/
686 // ---------------------------------------------------------------------
687 /* This runs the select loop over the server FDs, Output file FDs and
689 bool HttpMethod::Go(bool ToFile
,ServerState
*Srv
)
691 // Server has closed the connection
692 if (Srv
->ServerFd
== -1 && (Srv
->In
.WriteSpace() == false ||
700 /* Add the server. We only send more requests if the connection will
702 if (Srv
->Out
.WriteSpace() == true && Srv
->ServerFd
!= -1
703 && Srv
->Persistent
== true)
704 FD_SET(Srv
->ServerFd
,&wfds
);
705 if (Srv
->In
.ReadSpace() == true && Srv
->ServerFd
!= -1)
706 FD_SET(Srv
->ServerFd
,&rfds
);
713 if (Srv
->In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
714 FD_SET(FileFD
,&wfds
);
717 FD_SET(STDIN_FILENO
,&rfds
);
719 // Figure out the max fd
721 if (MaxFd
< Srv
->ServerFd
)
722 MaxFd
= Srv
->ServerFd
;
729 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
733 return _error
->Errno("select",_("Select failed"));
738 _error
->Error(_("Connection timed out"));
739 return ServerDie(Srv
);
743 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&rfds
))
746 if (Srv
->In
.Read(Srv
->ServerFd
) == false)
747 return ServerDie(Srv
);
750 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&wfds
))
753 if (Srv
->Out
.Write(Srv
->ServerFd
) == false)
754 return ServerDie(Srv
);
757 // Send data to the file
758 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
760 if (Srv
->In
.Write(FileFD
) == false)
761 return _error
->Errno("write",_("Error writing to output file"));
764 // Handle commands from APT
765 if (FD_ISSET(STDIN_FILENO
,&rfds
))
774 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
775 // ---------------------------------------------------------------------
776 /* This takes the current input buffer from the Server FD and writes it
778 bool HttpMethod::Flush(ServerState
*Srv
)
782 SetNonBlock(File
->Fd(),false);
783 if (Srv
->In
.WriteSpace() == false)
786 while (Srv
->In
.WriteSpace() == true)
788 if (Srv
->In
.Write(File
->Fd()) == false)
789 return _error
->Errno("write",_("Error writing to file"));
790 if (Srv
->In
.IsLimit() == true)
794 if (Srv
->In
.IsLimit() == true || Srv
->Encoding
== ServerState::Closes
)
800 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
801 // ---------------------------------------------------------------------
803 bool HttpMethod::ServerDie(ServerState
*Srv
)
805 unsigned int LErrno
= errno
;
807 // Dump the buffer to the file
808 if (Srv
->State
== ServerState::Data
)
810 SetNonBlock(File
->Fd(),false);
811 while (Srv
->In
.WriteSpace() == true)
813 if (Srv
->In
.Write(File
->Fd()) == false)
814 return _error
->Errno("write",_("Error writing to the file"));
817 if (Srv
->In
.IsLimit() == true)
822 // See if this is because the server finished the data stream
823 if (Srv
->In
.IsLimit() == false && Srv
->State
!= ServerState::Header
&&
824 Srv
->Encoding
!= ServerState::Closes
)
828 return _error
->Error(_("Error reading from server Remote end closed connection"));
830 return _error
->Errno("read",_("Error reading from server"));
836 // Nothing left in the buffer
837 if (Srv
->In
.WriteSpace() == false)
840 // We may have got multiple responses back in one packet..
848 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
849 // ---------------------------------------------------------------------
850 /* We look at the header data we got back from the server and decide what
854 3 - Unrecoverable error
855 4 - Error with error content page
856 5 - Unrecoverable non-server error (close the connection) */
857 int HttpMethod::DealWithHeaders(FetchResult
&Res
,ServerState
*Srv
)
860 if (Srv
->Result
== 304)
862 unlink(Queue
->DestFile
.c_str());
864 Res
.LastModified
= Queue
->LastModified
;
868 /* We have a reply we dont handle. This should indicate a perm server
870 if (Srv
->Result
< 200 || Srv
->Result
>= 300)
872 _error
->Error("%u %s",Srv
->Result
,Srv
->Code
);
873 if (Srv
->HaveContent
== true)
878 // This is some sort of 2xx 'data follows' reply
879 Res
.LastModified
= Srv
->Date
;
880 Res
.Size
= Srv
->Size
;
884 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
885 if (_error
->PendingError() == true)
888 FailFile
= Queue
->DestFile
;
889 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
891 FailTime
= Srv
->Date
;
893 // Set the expected size
894 if (Srv
->StartPos
>= 0)
896 Res
.ResumePoint
= Srv
->StartPos
;
897 ftruncate(File
->Fd(),Srv
->StartPos
);
900 // Set the start point
901 lseek(File
->Fd(),0,SEEK_END
);
904 Srv
->In
.Hash
= new Hashes
;
906 // Fill the Hash if the file is non-empty (resume)
907 if (Srv
->StartPos
> 0)
909 lseek(File
->Fd(),0,SEEK_SET
);
910 if (Srv
->In
.Hash
->AddFD(File
->Fd(),Srv
->StartPos
) == false)
912 _error
->Errno("read",_("Problem hashing file"));
915 lseek(File
->Fd(),0,SEEK_END
);
918 SetNonBlock(File
->Fd(),true);
922 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
923 // ---------------------------------------------------------------------
924 /* This closes and timestamps the open file. This is neccessary to get
925 resume behavoir on user abort */
926 void HttpMethod::SigTerm(int)
934 UBuf
.actime
= FailTime
;
935 UBuf
.modtime
= FailTime
;
936 utime(FailFile
.c_str(),&UBuf
);
941 // HttpMethod::Fetch - Fetch an item /*{{{*/
942 // ---------------------------------------------------------------------
943 /* This adds an item to the pipeline. We keep the pipeline at a fixed
945 bool HttpMethod::Fetch(FetchItem
*)
950 // Queue the requests
953 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
954 I
= I
->Next
, Depth
++)
956 // If pipelining is disabled, we only queue 1 request
957 if (Server
->Pipeline
== false && Depth
>= 0)
960 // Make sure we stick with the same server
961 if (Server
->Comp(I
->Uri
) == false)
968 SendReq(I
,Server
->Out
);
976 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
977 // ---------------------------------------------------------------------
978 /* We stash the desired pipeline depth */
979 bool HttpMethod::Configuration(string Message
)
981 if (pkgAcqMethod::Configuration(Message
) == false)
984 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
985 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
987 Debug
= _config
->FindB("Debug::Acquire::http",false);
992 // HttpMethod::Loop - Main loop /*{{{*/
993 // ---------------------------------------------------------------------
995 int HttpMethod::Loop()
997 signal(SIGTERM
,SigTerm
);
998 signal(SIGINT
,SigTerm
);
1002 int FailCounter
= 0;
1005 // We have no commands, wait for some to arrive
1008 if (WaitFd(STDIN_FILENO
) == false)
1012 /* Run messages, we can accept 0 (no message) if we didn't
1013 do a WaitFd above.. Otherwise the FD is closed. */
1014 int Result
= Run(true);
1015 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
1021 // Connect to the server
1022 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
1025 Server
= new ServerState(Queue
->Uri
,this);
1028 /* If the server has explicitly said this is the last connection
1029 then we pre-emptively shut down the pipeline and tear down
1030 the connection. This will speed up HTTP/1.0 servers a tad
1031 since we don't have to wait for the close sequence to
1033 if (Server
->Persistent
== false)
1036 // Reset the pipeline
1037 if (Server
->ServerFd
== -1)
1040 // Connnect to the host
1041 if (Server
->Open() == false)
1049 // Fill the pipeline.
1052 // Fetch the next URL header data from the server.
1053 switch (Server
->RunHeaders())
1058 // The header data is bad
1061 _error
->Error(_("Bad header Data"));
1067 // The server closed a connection during the header get..
1074 Server
->Pipeline
= false;
1076 if (FailCounter
>= 2)
1078 Fail(_("Connection failed"),true);
1087 // Decide what to do.
1089 Res
.Filename
= Queue
->DestFile
;
1090 switch (DealWithHeaders(Res
,Server
))
1092 // Ok, the file is Open
1098 bool Result
= Server
->RunData();
1100 /* If the server is sending back sizeless responses then fill in
1103 Res
.Size
= File
->Size();
1105 // Close the file, destroy the FD object and timestamp it
1111 struct utimbuf UBuf
;
1113 UBuf
.actime
= Server
->Date
;
1114 UBuf
.modtime
= Server
->Date
;
1115 utime(Queue
->DestFile
.c_str(),&UBuf
);
1117 // Send status to APT
1120 Res
.TakeHashes(*Server
->In
.Hash
);
1136 // Hard server error, not found or something
1143 // Hard internal error, kill the connection and fail
1155 // We need to flush the data, the header is like a 404 w/ error text
1160 // Send to content to dev/null
1161 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1169 Fail(_("Internal error"));