| 23 | } |
| 24 | |
| 25 | static bool BOpenSSHGetUInt32( CUtlBuffer &buf, uint32 &result ) |
| 26 | { |
| 27 | uint32 temp; |
| 28 | if ( !buf.Get( &temp, 4 ) ) |
| 29 | return false; |
| 30 | result = BigDWord( temp ); |
| 31 | return true; |
| 32 | } |
| 33 | |
| 34 | static void OpenSSHWriteUInt32( CUtlBuffer &buf, uint32 data ) |
| 35 | { |
no test coverage detected