summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* A DHCP session holds a persistent reference to a network deviceMichael Brown2007-01-042-0/+27
|
* Added missing #includeMichael Brown2007-01-041-0/+1
|
* IPv6 minirouting table entries hold persistent references to net devices.Michael Brown2007-01-042-17/+83
|
* An AoE session holds a persistent reference to a net device.Michael Brown2007-01-042-0/+26
|
* Minirouting table entries hold a persistent reference to a net_device.Michael Brown2007-01-041-16/+91
|
* Use hotplug support to notify persistent reference holders when aMichael Brown2007-01-042-0/+9
| | | | net_device is unregistered.
* Minimal hotplug support: provide a facility for notifying persistentMichael Brown2007-01-042-0/+103
| | | | reference holders that their reference is about to become invalid.
* Send RST packets when we get a non-matching connection, or receive anMichael Brown2007-01-031-9/+51
| | | | out-of-range ACK.
* Accept RST on received packetsMichael Brown2007-01-031-9/+49
|
* Improve consistency between TCP and UDP RX datapathsMichael Brown2007-01-032-58/+73
|
* Verify checksums on the RX datapath.Michael Brown2007-01-038-159/+176
| | | | Simplify checksum generation on the TX datapath.
* Tidy up debug messagesMichael Brown2007-01-031-42/+38Star
| | | | Move routing into a separate function
* Fix compiler warningMichael Brown2007-01-031-3/+2Star
|
* Use whole bytes for the ACKED and RCVD portions of tcp_state; itMichael Brown2006-12-301-3/+3
| | | | produces slightly smaller code.
* Use autocolourisationMichael Brown2006-12-291-10/+13
|
* Use auto-colourisation for debug messages.Michael Brown2006-12-291-45/+44Star
| | | | | | | Truncate TX length to TCP window at time of transmission rather than at time of adding to TX packet; this is conceptually cleaner and also allows the application to call tcp_send() multiple times to build up a single packet.
* Added auto-colourising DBGC() macroMichael Brown2006-12-292-40/+98
|
* Redefine TCP state to include "flags that have been sent" rather thanMichael Brown2006-12-292-47/+46Star
| | | | | | "flags that are currently being sent". This allows at least one special case (checking that we haven't already sent a FIN in tcp_rx_fin()) to be collapsed.
* Don't send a second FIN if we receive a FIN while in FIN_WAIT_2Michael Brown2006-12-281-5/+6
|
* Merge changes from mcb-tcp-fixes branch.Michael Brown2006-12-2814-1193/+1112Star
|
* Keep running the main processing loop while waiting for input.Michael Brown2006-12-272-0/+8
|
* Added times to start/stop log messagesMichael Brown2006-12-271-8/+12
|
* Ensure that old TCP connection state is destroyed before attempting toMichael Brown2006-12-221-0/+5
| | | | | reopen connection. (The TCP API will soon change to render this step unnecessary.)
* Cannot immediately overwrite the peer address when we parseMichael Brown2006-12-223-9/+20
| | | | | TargetAddress from the login response, because we still need the old address while we close the connection!
* Fix prototype of random() and move to stdlib.hMichael Brown2006-12-223-2/+3
|
* Make start_timer() and stop_timer() robust against incorrect usage.Michael Brown2006-12-222-2/+12
|
* ibft_fill_data() prototype change.Michael Brown2006-12-212-4/+2Star
|
* Avoid null pointer dereferences when no username/password specified.Michael Brown2006-12-211-3/+6
|
* When login fails, leave the session open but not in full featureMichael Brown2006-12-211-4/+15
| | | | | | phase. In iscsi_issue(), detect this state and immediately refuse the operation. This avoids trying multiple logins when scsi.c tries several times to read the drive capacity.
* Use a bigger buffer for the initiator IQNMichael Brown2006-12-211-1/+1
|
* Add ability to shut down iSCSI connectionMichael Brown2006-12-214-24/+49
|
* Default to port 0 (sic).Michael Brown2006-12-211-1/+1
|
* Print explicit error message on iSCSI boot failure, and addMichael Brown2006-12-212-1/+4
| | | | "Permission denied" as an error text to strerror().
* Add iSCSI initiator IQN as a settingMichael Brown2006-12-211-0/+6
|
* Engage brain: since when was zero >= 0x80 ?Michael Brown2006-12-211-1/+1
|
* Some BIOSes return 0xe0 for extended characters. Just assume thatMichael Brown2006-12-211-1/+1
| | | | anything over 0x80 is an extended character.
* Added missing headerMichael Brown2006-12-211-0/+1
|
* Return ANSI sequences for special keysMichael Brown2006-12-211-6/+80
|
* Use getkey() and symbolic key names.Michael Brown2006-12-201-6/+8
|
* KEY_XXX constants are now defined in gpxe/keys.h. Kept separate fromMichael Brown2006-12-201-94/+2Star
| | | | | curses.h so that you don't have to suffer the curses namespace pollution just to get the symbolic key names.
* Use symbolic key names, and avoid moving beyond end of stringMichael Brown2006-12-201-9/+17
|
* Fix definition of KEY_ENDMichael Brown2006-12-201-1/+1
|
* Use getkey() and symbolic key names.Michael Brown2006-12-201-4/+5
|
* Some key sequences seem to end with a tildeMichael Brown2006-12-201-1/+1
|
* Add insert/delete and document keys, and documentation.Michael Brown2006-12-201-15/+19
|
* Added code to interpret ANSI keypress sequences into KEY_XXX constants.Michael Brown2006-12-202-0/+78
|
* Key definitionsMichael Brown2006-12-201-0/+78
|
* Define KEY_MIN and use it in kb.c.Michael Brown2006-12-202-2/+3
|
* Prevent NULL from ever pointing to some real code or data. (This wasMichael Brown2006-12-202-0/+10
| | | | | | causing the serial console to ignore input, because it happened to end up linked with serial_ischar() at address 0, which core/console.c decided was invalid).
* Return -EIO when verification fails, instead of -EINVAL.Michael Brown2006-12-201-1/+1
|